Skip to content

Writing to EEPROM on esp32s2 #5159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
xtrinch opened this issue May 6, 2021 · 11 comments
Closed

Writing to EEPROM on esp32s2 #5159

xtrinch opened this issue May 6, 2021 · 11 comments

Comments

@xtrinch
Copy link

xtrinch commented May 6, 2021

I've updated an "old" project that was using the https://github.com/espressif/arduino-esp32.git#idf-release/v4.2 to the new alpha version (using the latest master). The project does some EEPROM writes, which are now automagically not persisted between reboots. EEPROM.commit() returns true and everything looks fine. If I read them back during the same boot cycle, the values are read back fine. Then I restart and all is lost.

Here's a link to my project (which was working just fine under the idf-release/v4.2 branch which is now gone): https://github.com/xtrinch/esp32s2-bme280-webusb

Has something changed with the EEPROM handling between the branch I was using and the latest alpha version? Couldn't find any info.

@lbernstone
Copy link
Contributor

There's only been one minor change in readString in the last 2 years, and I can't see how that would present with these symptoms. There's a lot of logging in EEPROM, try setting core debug level to verbose and see if it throws any messages that might indicate an error.

@xtrinch
Copy link
Author

xtrinch commented May 7, 2021

I've given arduino preferences a try, to see if I have any success there.
preferences.putString("ssid", ssid) returns for example 10 (indicating that it saved successfully),
then I run preferences.getString("ssid", "Unknown") right after it, and it returns Unknown.

@lbernstone
Copy link
Contributor

@xtrinch
Copy link
Author

xtrinch commented May 7, 2021

Yes. But I've modified the sketch to demonstrate that the values do not persist across reboots:

  double height = 0;
  uint32_t age = 0;

  // Read: Variables <--- EEPROM stores
  HEIGHT.get(0, height);
  AGE.get(0, age);
  USBSerial.print("height: "); USBSerial.println(height);
  USBSerial.print("age: ");    USBSerial.println(age);
  USBSerial.println("------------------------------------\n");

  const char* name = "Teo Swee Ann";
  char rname[32];

  if (age != 47) {
    height = 5.8;
    age = 47;

    // Write: Variables ---> EEPROM stores
    NAMES.writeString(0, name);
    HEIGHT.put(0, height);
    AGE.put(0, age);
    USBSerial.println("Values are garbage, writing them to EEPROM:\n");
    USBSerial.print("name: ");   USBSerial.println(name);
    USBSerial.print("height: "); USBSerial.println(height);
    USBSerial.print("age: ");    USBSerial.println(age);
    USBSerial.println("------------------------------------\n");
  }

  // Clear variables
  rname[0] = '\0';
  height = 0;
  age = 0;
  USBSerial.print("height: "); USBSerial.println(height);
  USBSerial.print("age: ");    USBSerial.println(age);
  USBSerial.println("------------------------------------\n");


  // Read: Variables <--- EEPROM stores
  NAMES.get(0, rname);
  HEIGHT.get(0, height);
  AGE.get(0, age);
  USBSerial.println("Newly saved values:\n");
  USBSerial.print("name: ");   USBSerial.println(rname);
  USBSerial.print("height: "); USBSerial.println(height);
  USBSerial.print("age: ");    USBSerial.println(age);
  

  USBSerial.println("Done!");

The output is always the following, no matter how many times I reboot:

Testing EEPROMClass

height: nan
age: 4294967295
------------------------------------

Values are garbage, writing them to EEPROM:

name: Teo Swee Ann
height: 5.80
age: 47
------------------------------------

height: 0.00
age: 0
------------------------------------

Newly saved values:

name: Teo Swee Ann
height: 5.80
age: 47
Done!

@lbernstone
Copy link
Contributor

Try wiping your device with esptool.py erase_flash. Perhaps something is damaged in your nvs partition.
I am unable to reproduce. The following example works properly for me, and demonstrates your behavior easily by remarking the EEPROM.commit(). Make 100% sure you are calling a commit after you add data to nvs.

#include <EEPROM.h>
void setup() {
  Serial.begin(115200);
  EEPROM.begin(100);
  Serial.printf("At boot: %d\n", EEPROM.readInt(1));
  EEPROM.writeInt(1,42);
  Serial.printf("After write: %d\n", EEPROM.readInt(1));
  EEPROM.commit();  
}
void loop() {delay(-1);}

@xtrinch
Copy link
Author

xtrinch commented May 7, 2021

Erased the flash many times previously, and did not forget the EEPROM.commit() in the above example.

Interestingly enough, your last example works for me - when writing directly to address.
The following, however, does not persist between reboots (Tried on three different ESP32S2 devices, just to be sure it's not one faulty board):

EEPROMClass  AGE("eeprom2", 0x100);

void setup() {
  USBSerial.begin();
  AGE.begin(AGE.length());

  uint32_t age = 0;
  AGE.get(0, age);
  USBSerial.printf("At boot: %d\n", age);
  age = 47;
  AGE.put(0, age);
  AGE.get(0, age);
  USBSerial.printf("After write: %d\n", age);

  EEPROM.commit(); 
  USBSerial.println("Done!");
}

Output is always:

At boot: -1
After write: 47
Done!

I wish I could get you some core debug output there doesn't seem to be any with the following flags:

build_flags = 
  -DCORE_DEBUG_LEVEL=5
  -DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG

And every once in a while I get this weird crash:

␀␀␀␀name: ␀␀Newly saved values:
␀␀␀␀Done!␀␀␀eeprom0␀eeprom1␀eeprom2␀␀␀␀␀␀␀␀␀l�  @�@P@�@(�       @�@ @�@x@P@0�   @x@d�   @Espressif␀␀␀ESP32S2 arduino device␀␀1234-5678␀␀␀CDC class␀␀␀DFU class␀␀␀HID class␀␀␀MIDI class␀␀MSC class␀␀␀Vendor class (webUSB)␀␀␀espUSB␀␀�@�@�@�@�@�@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀x␎    @��     @(�     @x␎     @x␎     @x␎     @x␎     @P@0�   @x@x␎   @eeprom␀␀/home/xtrinch/.platformio/packages/framework-arduinoespressif32@src-537c58760dafe7fcc8a1d9bbcf00b6f6/libraries/EEPROM/src/EEPROM.cpp␀␀␀␀[%6u][E][%s:%u] %s(): Unable to open NVS namespace: %d
␀␀␀␀[%6u][E][%s:%u] %s(): Unable to read NVS key: %d
␀␀[%6u][E][%s:%u] %s(): Not enough memory to truncate EEPROM!
␀␀␀[%6u][E][%s:%u] %s(): Not enough memory to expand EEPROM!
␀expand␀␀[%6u][E][%s:%u] %s(): Not enough space to expand EEPROM from %d to %d
␀[%6u][E][%s:%u] %s(): Not enough memory for %d bytes in EEPROM
␀␀␀␀[%6u][E][%s:%u] %s(): error in write
␀␀commit␀␀begin␀␀␀␀␀␀␀␀␀␀␀��    @�@t@nan␀inf␀ovf␀/home/xtrinch/.platformio/packages/framework-arduinoespressif32@src-537c58760dafe7fcc8a1d9bbcf00b6f6/cores/esp32/esp32-hal-misc.c␀␀␀[%6u][E][%s:%u] %s(): Failed to add loop task to WDT
␀␀*␀␀␀[%6u][E][%s:%u] %s(): Failed to format the broken NVS partition!
␀␀[%6u][E][%s:%u] %s(): Failed to initialize NVS! Error: %u
␀initArduino␀%s␀␀loopTask␀␀␀␀/home/xtrinch/.platformio/packages/framework-arduinoespressif32@src-537c58760dafe7fcc8a1d9bbcf00b6f6/cores/esp32/esp32-hal-cpu.c␀␀␀␀[%6u][E][%s:%u] %s(): Callback Object Malloc Failed
␀␀␀[%6u][E][%s:%u] %s(): duplicate func=%08X arg=%08X
␀␀␀␀[%6u][E][%s:%u] %s(): Bad frequency: %u MHz! Options are: 240, 160, 80, %u, %u and %u MHz
␀[%6u][E][%s:%u] %s(): Bad frequency: %u MHz! Options are: 240, 160, 80, %u and %u MHz
␀[%6u][E][%s:%u] %s(): CPU clock could not be set to %u MHz
␀␀␀␀setCpuFrequencyMhz␀␀ota_app_count < 16 && "must erase the partition before writing to it"␀␀␀../esp-idf/components/app_update/esp_ota_ops.c␀␀phys_offs != SPI_FLASH_CACHE2PHYS_FAIL␀␀it != NULL␀␀esp_ota_get_running_partition␀␀␀partition␀␀␀E (%u) %s: load_partitions returned 0x%x
␀␀␀it␀␀../esp-idf/components/spi_flash/partition.c␀iterator != NULL␀␀␀␀partition != NULL␀␀␀esp_partition_mmap␀␀esp_partition_erase_range␀␀␀esp_partition_write_raw␀esp_partition_read_raw␀␀esp_partition_write␀esp_partition_read␀␀esp_partition_get␀␀␀esp_partition_next␀␀s_mmap_page_refcnt[i] == 0 || (entry_pro == SOC_MMU_PAGE_IN_FLASH(pages[pageno]) )␀␀../esp-idf/components/spi_flash/flash_mmap.c␀␀␀␀s_mmap_page_refcnt[i] > 0␀␀␀0 && "invalid handle, or handle already unmapped"␀␀␀spi_flash_munmap␀␀␀␀spi_flash_mmap_pages␀␀␀␀(dest_addr % 16) == 0␀␀␀../esp-idf/components/spi_flash/esp32s2/flash_ops_esp32s2.c␀(size % 16) == 0␀␀␀␀spi_flash_write_encrypted_chip␀␀E (%u) %s: unexpected spi flash error code: 0x%x
␀␀␀E (%u) %s: failed to get chip size
␀spi_flash␀␀␀E (%u) %s: Detected size(%dk) smaller than the size in the binary image header(%dk). Probe failed.
␀spi_flash␀␀␀chip_status == 0␀␀␀␀../esp-idf/components/spi_flash/spi_flash_os_func_app.c␀spi1_flash_os_check_yield␀␀␀nvs␀chunkStart == item.blobIndex.chunkStart␀../esp-idf/components/nvs_flash/src/nvs_storage.cpp␀itemTypeOf(dst) == datatype␀../esp-idf/components/nvs_flash/src/nvs_types.hpp␀␀␀err != ESP_ERR_NVS_PAGE_FULL␀␀␀␀dataSize == item.blobIndex.dataSize␀static_cast<uint8_t> (chunkStart) + chunkNum == item.chunkIndex␀offset == dataSize␀␀findItem(nsIndex, datatype, key, findPage, item)␀␀␀␀prevStart == VerOffset::VER_0_OFFSET || prevStart == VerOffset::VER_1_OFFSET␀␀␀␀esp_err_t nvs::Storage::eraseMultiPageBlob(uint8_t, const char*, nvs::VerOffset)␀␀␀␀esp_err_t nvs::Storage::cmpMultiPageBlob(uint8_t, const char*, const void*, size_t)␀esp_err_t nvs::Storage::readMultiPageBlob(uint8_t, const char*, void*, size_t)␀␀esp_err_t nvs::Storage::writeItem(uint8_t, nvs::ItemType, const char*, const void*, size_t)␀esp_err_t nvs::Storage::writeMultiPageBlob(uint8_t, const char*, const void*, size_t, nvs::VerOffset)␀␀␀void nvs::Item::getValue(T&) [with T = unsigned char]␀␀␀␀␀␀␀␀␀␀␀�@�@�@␐@`@�@�@D@�@�@␜@�@<@␀␀␀␀␀␀␀␀P� @�@X�   @l@�@�@�@�@d�   @p�     @␀␀␀␀␀␀␀␀|�     @false && "item should have been present in cache"␀␀␀../esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp␀␀void nvs::HashList::erase(size_t, bool)␀index == mFirstUsedEntry␀␀␀␀../esp-idf/components/nvs_flash/src/nvs_page.cpp␀␀␀␀mState == PageState::UNINITIALIZED␀␀index < ENTRY_COUNT␀entry < ENTRY_COUNT␀../esp-idf/components/nvs_flash/src/nvs_page.hpp␀␀␀␀end <= ENTRY_COUNT␀␀end > begin␀index < Nitems␀␀../esp-idf/components/nvs_flash/src/compressed_enum_table.hpp␀␀␀size % ENTRY_SIZE == 0␀␀mNextFreeEntry != INVALID_ENTRY␀mFirstUsedEntry != INVALID_ENTRY␀␀␀␀state == EntryState::WRITTEN || state == EntryState::EMPTY␀␀readEntryIndex != mFirstUsedEntry␀␀␀item.span > 0␀␀␀esp_err_t nvs::Page::alterEntryRangeState(size_t, size_t, nvs::Page::EntryState)␀␀␀␀void CompressedEnumTable<Tenum, Nbits, Nitems>::set(size_t, Tenum) [with Tenum = nvs::Page::EntryState; unsigned int Nbits = 2; unsigned int Nitems = 126; size_t = unsigned int]␀␀␀esp_err_t nvs::Page::alterEntryState(size_t, nvs::Page::EntryState)␀esp_err_t nvs::Page::initialize()␀␀␀esp_err_t nvs::Page::mLoadEntryTable()␀␀esp_err_t nvs::Page::copyItems(nvs::Page&)␀␀void nvs::Page::updateFirstUsedEntry(size_t, size_t)␀␀␀␀Tenum CompressedEnumTable<Tenum, Nbits, Nitems>::get(size_t) const [with Tenum = nvs::Page::EntryState; unsigned int Nbits = 2; unsigned int Nitems = 126; size_t = unsigned int]␀␀␀esp_err_t nvs::Page::eraseEntryAndSpan(size_t)␀␀esp_err_t nvs::Page::writeEntryData(const uint8_t*, size_t)␀uint32_t nvs::Page::getEntryAddress(size_t) const␀␀␀usedEntries == newPage->getUsedEntryCount()␀../esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp␀mPageList.back().getSeqNumber(lastSeqNo)␀␀␀␀esp_err_t nvs::PageManager::requestNewPage()␀␀␀␀esp_err_t nvs::PageManager::load(nvs::Partition*, uint32_t, uint32_t)␀␀␀pthread␀E (%u) %s: Failed to allocate task args!
␀␀␀E (%u) %s: Failed to allocate pthread data!
␀␀␀␀E (%u) %s: Failed to create task!
␀␀false && "Failed to lock threads list!"␀../esp-idf/components/pthread/pthread.c␀E (%u) %s: %s: not supported!
␀␀false && "Failed to release mutex!"␀false && "Failed to unlock mutex!"␀␀pthread_mutex_unlock␀␀␀␀pthread_mutex_destroy␀␀␀pthread_cancel␀␀tls != NULL␀../esp-idf/components/pthread/pthread_local_storage.c␀␀␀pthread_local_storage_thread_deleted_callback␀␀␀
Stack smashing protect failure!

␀␀␀task_wdt␀␀␀␀E (%u) %s: Task watchdog got triggered. The following tasks did not reset the watchdog in time:
␀␀␀␀E (%u) %s:  - %s (%s)
␀␀E (%u) %s: %s
␀␀E (%u) %s: CPU %d: %s
␀␀E (%u) %s: Aborting.
␀␀␀E (%u) %s: Print CPU %d (current core) backtrace
␀␀␀esp_intr_alloc(ETS_TG0_WDT_LEVEL_INTR_SOURCE, 0, task_wdt_isr, NULL, &twdt_config->intr_handle)␀../esp-idf/components/esp_system/task_wdt.c␀esp_task_wdt_init␀␀␀rtc_clk_xtal_freq_get() == RTC_XTAL_FREQ_40M␀␀␀␀../esp-idf/components/esp_system/port/soc/esp32s2/clk.c␀res␀␔d␔'esp_clk_init␀␀␀␀␌@
@�@
@�@
@�@�@�@
@�@�@�@
@�@�@�@�@␗@@@�@@@�@@@�@�@�@@@�@�@�@@@�@�@�@�@(hint & (~RST_REASON_MASK)) == 0␀␀␀␀../esp-idf/components/esp_system/port/soc/esp32s2/reset_reason.c␀␀␀␀esp_reset_reason_set_hint␀␀␀␁␀␀␀␀�A?␂␀␀␀␀␀B?

Backtrace:␀␀:0x␀0x%08X:0x%08X␀␀␀ |<-CORRUPTED␀␀␀ |<-CONTINUES␀␀␀

␀␀␀␀Guru Meditation Error: Core ␀␀␀␀ panic'ed (␀). ␀Setting breakpoint at 0x␀␀␀␀ and returning...
␀
ELF file SHA256: ␀Rebooting...
␀␀/dev/uart/0␀w␀␀␀err == ESP_OK && "Failed to init pthread module!"␀␀␀../esp-idf/components/esp_system/startup.c␀␀flash_ret == ESP_OK␀do_core_init␀␀␀␀�@Unknown␀␇␁␁␁␁␀␀␀Memory dump at 0x␀␀␀Icache sync parameter configuration error, the error address and size is 0x␀(0x␀)
␀Icache preload parameter configuration error, the error address and size is 0x␀␀Icache reject error occurred while accessing the address 0x␀ (invalid mmu entry)␀␀␀␀Dcache sync parameter configuration error, the error address and size is 0x␀Dcache preload parameter configuration error, the error address and size is 0x␀␀Write back error occurred while dcache tries to write back to flash
␀␀␀Dcache reject error occurred while accessing the address 0x␀MMU entry fault error occurred while accessing the address 0x␀␀␀Write␀␀␀Read␀␀␀␀Instruction fetch␀␀␀ operation at address 0x␀␀␀␀ not permitted.
␀␀␀Debug exception reason: ␀␀␀␀SingleStep ␀HwBreakpoint ␀␀␀Stack canary watchpoint triggered (␀) ␀␀Watchpoint 0 triggered ␀BREAK instr ␀␀␀␀BREAKN instr ␀␀␀DebugIntr ␀␀Core ␀␀␀ register dump:␀  ␀␀ was running in ISR context:
␀␀EPC1    : 0x␀␀␀␀  EPC2    : 0x␀␀  EPC3    : 0x␀␀  EPC4    : 0x␀␀PC      ␀␀␀␀PS      ␀␀␀␀A0      ␀␀␀␀A1      ␀␀␀␀A2      ␀␀␀␀A3      ␀␀␀␀A4      ␀␀␀␀A5      ␀␀␀␀A6      ␀␀␀␀A7      ␀␀␀␀A8      ␀␀␀␀A9      ␀␀␀␀A10     ␀␀␀␀A11     ␀␀␀␀A12     ␀␀␀␀A13     ␀␀␀␀A14     ␀␀␀␀A15     ␀␀␀␀SAR     ␀␀␀␀EXCCAUSE␀␀␀␀EXCVADDR␀␀␀␀LBEG    ␀␀␀␀LEND    ␀␀␀␀LCOUNT  ␀␀␀␀␌$␀?␘$␀?$$␀?0$␀?<$␀?H$␀?T$␀?`$␀?l$␀?x$␀?�$␀?�$␀?�$␀?�$␀?�$␀?�$␀?�$␀?�$␀?�$␀?�$␀?�$␀%␀?␔%␀? %␀?Exception was unhandled.␀␀␀␀Interrupt wdt timeout on CPU0␀␀␀Interrupt wdt timeout on CPU1␀␀␀Unknown reason␀␀Memory protection fault␀Unhandled debug exception␀␀␀Double exception␀␀␀␀Unhandled kernel exception␀␀Coprocessor exception␀␀␀Cache error␀IllegalInstruction␀␀Syscall␀InstructionFetchError␀␀␀LoadStoreError␀␀Level1Interrupt␀Alloca␀␀IntegerDivideByZero␀PCValue␀Privileged␀␀LoadStoreAlignment␀␀InstrPDAddrError␀␀␀␀LoadStorePIFDataError␀␀␀InstrPIFAddrError␀␀␀LoadStorePIFAddrError␀␀␀InstTLBMiss␀InstTLBMultiHit␀InstFetchPrivilege␀␀InstrFetchProhibited␀␀␀␀LoadStoreTLBMiss␀␀␀␀LoadStoreTLBMultihit␀␀␀␀LoadStorePrivilege␀␀LoadProhibited␀␀StoreProhibited␀Cp0Dis␀␀Cp1Dis␀␀Cp2Dis␀␀Cp3Dis␀␀Cp4Dis␀␀Cp5Dis␀␀Cp6Dis␀␀Cp7Dis␀␀�%␀?␐&␀?,&␀?@&␀?\&␀?�%␀?�%␀?t&␀?�&␀?�&␀?�&␀?�&␀?�&␀?�&␀?�&␀?�&␀?�&␀?␄'␀?x␝␀?x␝␀?␘'␀?,'␀?D'␀?X'␀?p'␀?|'␀?�'␀?x␝␀?�'␀?x␝␀?x␝␀?x␝␀?�'␀?�'␀?�'␀?x␝␀?�'␀(␀?x␝␀?x␝␀?␘(␀? (␀?((␀?0(␀?8(␀?@(␀?H(␀?P(␀?␐␀␀␀��␀␀␀␀�p␀␀␄␀␀␀C0␀␀␃␀␀␀␂ ␀␀␂␀␀␀␁␐␀␀␁␀␀␀␀␀␀�␐␀␀␀␏␇␏␀␀␀␇␃␇␀␄␀␀␀␃␁␃␀␃␀␀␀␂␀␂␀␂␀␀␀␁␀␁␀␁␀␀␀␀␀␀�/␀␀␀strncmp(src_path, vfs->path_prefix, vfs->path_prefix_len) == 0␀␀../esp-idf/components/vfs/vfs.c␀␀��␀translate_path␀␀/0␀␀/1␀␀/2␀␀fd >=0 && fd < 3␀␀␀␀../esp-idf/components/vfs/vfs_uart.c␀␀␀␀s_ctx[fd]->peek_char == NONE␀␀␀␀fd >= 0 && fd < 3␀␀␀/dev/uart␀␀␀esp_vfs_register("/dev/uart", &vfs, NULL)␀␀␀␀␀␀␀2␀␀␀K␀␀␀n␀␀␀�␀␀␀�␀␀␀�␀␀␀,␁␀␀X␂␀␀�␄␀␇␀␀`  ␀␀�␒␀␀�%␀␀␀K␀␀␀�␀␀␀�␀␀␀�␁␀␀�␃␀␇␀ �␇␀␀␀␀␐␎␀@B␏␀␀�␑␀`�␖␀��␞␀�%&␀��-␀�g5␀␀        =␀␀␀␀␀␁␀␀␀␂␀␀␀␃␀␀␀uart_write␀␀uart_return_char␀␀␀␀uart_read␀␀␀uart_close␀␀uart_fstat␀␀uart_fcntl␀␀uart_fsync␀␀esp_vfs_dev_uart_register␀␀␀␜��?@��?i == 0 || s_log_cache[(i - 1) / 2].generation < s_log_cache[i].generation␀␀␀../esp-idf/components/log/log.c␀get_cached_log_level␀␀␀␀esp_log_level_set␀␀␀esp_ptr_in_diram_dram((void *)dstart)␀␀␀../esp-idf/components/heap/heap_caps.c␀␀esp_ptr_in_diram_dram((void *)dend)␀(dstart & 3) == 0␀␀␀(dend & 3) == 0␀heap != NULL && "free() target pointer is outside heap areas"␀␀␀old_size > 0␀␀␀␀heap != NULL && "realloc() pointer is outside heap areas"␀␀␀heap_caps_realloc␀␀␀heap_caps_free␀␀dram_alloc_to_iram_addr␀heap_caps_malloc␀␀␀␀heap_size <= HEAP_SIZE_MAX␀␀../esp-idf/components/heap/heap_caps_init.c␀heap_idx <= num_heaps␀␀␀heap_idx == num_heaps␀␀␀SLIST_EMPTY(&registered_heaps)␀␀heaps_array != NULL␀heap_caps_init␀␀register_heap␀␀␀reserved[i].start <= reserved[i].end␀␀␀␀../esp-idf/components/soc/memory_layout_utils.c␀reserved[i + 1].start > reserved[i].start␀␀␀memory_layout␀␀␀E (%u) %s: SOC_RESERVE_MEMORY_REGION region range 0x%08x - 0x%08x overlaps with 0x%08x - 0x%08x
␀␀␀␀s_prepare_reserved_regions␀␀␄�@�@?␌�@?␐�@?␔�@?␘�@?␜�@? �@?$�@?(�@?,�@?0�@?4�@?8�@?<�@?@�@?D�@?H�@?L�@?P�@?T�@?X�@?␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀l�@?p�@?t�@?x�@?|�@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?��@?␀␀␀␀␖␀␀␀␀��?␀ ␀␀␅␀␀␀␀␀␀␀␀␀P?␀␀�␀␄␀␀␀␀␀␀␀␀@�?␀ ␀␀␀␀␀␀␀@␂@␀`�?␀ ␀␀␀␀␀␀␀`␂@␀��?␀@␀␀␀␀␀␀␀�␂@␀��?␀@␀␀␀␀␀␀␀�␂@␀␀�?␀@␀␀␀␀␀␀␀␀␃@␀@�?␀@␀␀␀␀␀␀␀@␃@␀��?␀@␀␀␀␀␀␀␀�␃@␀��?␀@␀␀␀␀␀␀␀�␃@␀␀�?␀@␀␀␀␀␀␀␀␀␄@␀@�?␀@␀␀␀␀␀␀␀@␄@␀��?␀@␀␀␀␀␀␀␀�␄@␀��?␀@␀␀␀␀␀␀␀�␄@␀␀�?␀@␀␀␀␀␀␀␀␀␅@␀@�?␀@␀␀␀␀␀␀␀@␅@␀��?␀@␀␀␀␀␀␀␀�␅@␀��?␀@␀␀␀␀␀␀␀�␅@␀␀�?␀@␀␀␀␀␀␀␀␀␆@␀@�?␀@␀␀␀␀␀␀␀@␆@␀��?␀@␀␀␀␀␀␀␀�␆@␀��?␀@␀␀␁␀␀␀␀�␆@DRAM␀␀␀␀D/IRAM␀␀IRAM␀␀␀␀SPIRAM␀␀RTCRAM␀␀�1␀?␄␐␀␀
␀␀␀␀␀␀␀␀␀␀�1␀?␄␐␀␀
␀␀␀␀␀␀␀␁␀␀�1␀?␀␀␀␀␌␘␀␀␃␀␀␀␁␀␀␀�1␀?␀␀␀␀␀␀␀␀␀␀␀␀␀␀�1␀?␀␔␀␀␀␀␀␀␆␀␀␀␀␀␀␀�1␀?␄␐␀␀␀␀␀␀␀␀␀␀␀␀!␀␀␀=␀␀␀␀␀␀␀␁␀␀␀"␀␀␀>␀␀␀␀␀␀␀␁␀␀␀#␀␀␀?␀␀␀␀␀␀␀␁␀␀␀$␀␀␀=␀␀␀␁␀␀␀␁␀␀␀%␀␀␀?␀␀␀␁␀␀␀␁␀␀␀&␀␀␀@␀␀␀␁␀␀␀␁␀␀␀8␀␀␀@␀␀␀␀␀␀␀␀␀␀␀8␀␀␀B␀␀␀␀␀␀␀␀␀␀␀8␀␀␀C␀␀␀␀␀␀␀␀␀␀␀<␀␀␀A␀␀␀␀␀␀␀␀␀␀␀��������␀␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␅␀␀␀␆␀␀␀␇␀␀␀!((vd->flags&VECDESC_FL_SHARED)&&(vd->flags&VECDESC_FL_NONSHARED))␀␀../esp-idf/components/esp_hw_support/intr_alloc.c␀␀␀svd != NULL␀svd␀esp_intr_disable␀␀␀␀esp_intr_free␀␀␀is_vect_desc_usable␀find_desc_for_source␀␀␀␀gpio␀␀␀␀E (%u) %s: %s(%d): %s
␀␀GPIO number error␀␀␀GPIO drive capability error␀gpio_set_drive_capability␀␀␀periph < PERIPH_MODULE_MAX␀␀../esp-idf/components/driver/periph_ctrl.c␀␀�@�@�@�@?@�@@@@@@@�@␁@
@a@␒@␛@$@-@y@y@y@6@H@P@Y@a@j@s@?@␂@@␎@␙@@%@1@;@G@S@_@k@w@�@@�@�@�@�@�@␖@␖@␖@�@@@@�@␀@␋@@�`B?�`B?�`B?H␀L?L␀L?L␀L?L␀L?L␀L?L␀L?L␀L?␔␀L?�`B?�`B?�`B?@␀L?D␀L?D␀L?D␀L?D␀L?D␀L?D␀L?␐␀L?␀␀␄␀␀␀ ␀␀␀␀␀�␀�␀␀␀␀␀␄␀␐␀␀␀␀␀ ␀␀ ␀␀␀�␀␀␀␁␀␀␀␐␀␀␀␂␀␀␀␄␀␀␂␀␀␀@␀␀␀␀␀␁␀␀␀@␀␀␀␀␀␀�␀␀�␇␀␀�␃␀␀␀␀␀ ␂␀␀␀␄␀␀␀␀␀@␀␀␀B␀␀␀D␀␀␀�␀␀␀periph_module_reset␀periph_module_enable␀␀␀␀␀␀␀␀uart␀␀␀␀uart_num error␀␀data bit error␀␀stop bit error␀␀uart driver error␀␀␀E (%u) %s: rx_buffered_len error
␀␀␀uart_flush_input␀␀␀␀uart_get_buffered_data_len␀␀uart_wait_tx_done␀␀␀uart_disable_intr_mask␀␀uart_enable_intr_mask␀␀␀uart_get_baudrate␀␀␀uart_set_baudrate␀␀␀uart_get_parity␀uart_set_parity␀uart_get_stop_bits␀␀uart_set_stop_bits␀␀uart_get_word_length␀␀␀␀uart_set_word_length␀␀␀␀Unhandled interrupt %d on cpu %d!
␀␀memprot␀E (%u) %s: Invalid mem_type %d
␀�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�j␂@�l␂@@l␂@rl␂@�l␂@Yl␂@�l␂@�l␂@�l␂@rl␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@�l␂@am␂@gm␂@=m␂@am␂@Cm␂@am␂@am␂@am␂@Im␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@Om␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@Um␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@am␂@[m␂@UNKOWN␀␀IRAM0_SRAM␀␀IRAM0_RTCFAST␀␀␀DRAM0_RTCFAST␀␀␀PERI1_RTCSLOW␀␀␀PERI2_RTCSLOW_0␀PERI2_RTCSLOW_1␀DRAM0_SRAM␀␀␘@@@␘@@␘@␘@␘@@␘@␘@␘@@␘@␘@␘@�@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␘@␅@S@�@␅@S@␅@␅@␅@�@␅@␅@␅@␅@␅@␅@␅@�@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@␅@@block < IRAM0_SRAM_TOTAL_UNI_BLOCKS␀../esp-idf/components/hal/esp32s2/include/hal/memprot_ll.h␀␀block < DRAM0_SRAM_TOTAL_UNI_BLOCKS␀E (%u) %s: Invalid mem_type %d (unified block management not supported)
␀␀␀␀addr <= DRAM0_SRAM_SPL_BLOCK_HIGH␀␀␀addr % 0x4 == 0␀addr <= IRAM0_SRAM_SPL_BLOCK_HIGH␀␀␀esp_memprot_iram0_sram_set_prot␀esp_memprot_dram0_sram_set_prot␀ERROR␀␀␀ESP_FAIL␀␀␀␀ESP_OK␀␀ESP_ERR_NO_MEM␀␀ESP_ERR_INVALID_ARG␀ESP_ERR_INVALID_STATE␀␀␀ESP_ERR_INVALID_SIZE␀␀␀␀ESP_ERR_NOT_FOUND␀␀␀ESP_ERR_NOT_SUPPORTED␀␀␀ESP_ERR_TIMEOUT␀ESP_ERR_INVALID_RESPONSE␀␀␀␀ESP_ERR_INVALID_CRC␀ESP_ERR_INVALID_VERSION␀ESP_ERR_INVALID_MAC␀ESP_ERR_NOT_FINISHED␀␀␀␀ESP_ERR_NVS_BASE␀␀␀␀ESP_ERR_NVS_NOT_INITIALIZED␀ESP_ERR_NVS_NOT_FOUND␀␀␀ESP_ERR_NVS_TYPE_MISMATCH␀␀␀ESP_ERR_NVS_READ_ONLY␀␀␀ESP_ERR_NVS_NOT_ENOUGH_SPACE␀␀␀␀ESP_ERR_NVS_INVALID_NAME␀␀␀␀ESP_ERR_NVS_INVALID_HANDLE␀␀ESP_ERR_NVS_REMOVE_FAILED␀␀␀ESP_ERR_NVS_KEY_TOO_LONG␀␀␀␀ESP_ERR_NVS_PAGE_FULL␀␀␀ESP_ERR_NVS_INVALID_STATE␀␀␀ESP_ERR_NVS_INVALID_LENGTH␀␀ESP_ERR_NVS_NO_FREE_PAGES␀␀␀ESP_ERR_NVS_VALUE_TOO_LONG␀␀ESP_ERR_NVS_PART_NOT_FOUND␀␀ESP_ERR_NVS_NEW_VERSION_FOUND␀␀␀ESP_ERR_NVS_XTS_ENCR_FAILED␀ESP_ERR_NVS_XTS_DECR_FAILED␀ESP_ERR_NVS_XTS_CFG_FAILED␀␀ESP_ERR_NVS_XTS_CFG_NOT_FOUND␀␀␀ESP_ERR_NVS_ENCR_NOT_SUPPORTED␀␀ESP_ERR_NVS_KEYS_NOT_INITIALIZED␀␀␀␀ESP_ERR_NVS_CORRUPT_KEY_PART␀␀␀␀ESP_ERR_NVS_CONTENT_DIFFERS␀ESP_ERR_NVS_WRONG_ENCRYPTION␀␀␀␀ESP_ERR_ULP_BASE␀␀␀␀ESP_ERR_ULP_SIZE_TOO_BIG␀␀␀␀ESP_ERR_ULP_INVALID_LOAD_ADDR␀␀␀ESP_ERR_ULP_DUPLICATE_LABEL␀ESP_ERR_ULP_UNDEFINED_LABEL␀ESP_ERR_ULP_BRANCH_OUT_OF_RANGE␀ESP_ERR_OTA_BASE␀␀␀␀ESP_ERR_OTA_PARTITION_CONFLICT␀␀ESP_ERR_OTA_SELECT_INFO_INVALID␀ESP_ERR_OTA_VALIDATE_FAILED␀ESP_ERR_OTA_SMALL_SEC_VER␀␀␀ESP_ERR_OTA_ROLLBACK_FAILED␀ESP_ERR_OTA_ROLLBACK_INVALID_STATE␀␀ESP_ERR_EFUSE␀␀␀ESP_OK_EFUSE_CNT␀␀␀␀ESP_ERR_EFUSE_CNT_IS_FULL␀␀␀ESP_ERR_EFUSE_REPEATED_PROG␀ESP_ERR_CODING␀␀ESP_ERR_NOT_ENOUGH_UNUSED_KEY_BLOCKS␀␀␀␀ESP_ERR_IMAGE_BASE␀␀ESP_ERR_IMAGE_FLASH_FAIL␀␀␀␀ESP_ERR_IMAGE_INVALID␀␀␀ESP_ERR_WIFI_BASE␀␀␀ESP_ERR_WIFI_NOT_INIT␀␀␀ESP_ERR_WIFI_NOT_STARTED␀␀␀␀ESP_ERR_WIFI_NOT_STOPPED␀␀␀␀ESP_ERR_WIFI_IF␀ESP_ERR_WIFI_MODE␀␀␀ESP_ERR_WIFI_STATE␀␀ESP_ERR_WIFI_CONN␀␀␀ESP_ERR_WIFI_NVS␀␀␀␀ESP_ERR_WIFI_MAC␀␀␀␀ESP_ERR_WIFI_SSID␀␀␀ESP_ERR_WIFI_PASSWORD␀␀␀ESP_ERR_WIFI_TIMEOUT␀␀␀␀ESP_ERR_WIFI_WAKE_FAIL␀␀ESP_ERR_WIFI_WOULD_BLOCK␀␀␀␀ESP_ERR_WIFI_NOT_CONNECT␀␀␀␀ESP_ERR_WIFI_POST␀␀␀ESP_ERR_WIFI_INIT_STATE␀ESP_ERR_WIFI_STOP_STATE␀ESP_ERR_WIFI_NOT_ASSOC␀␀ESP_ERR_WIFI_TX_DISALLOW␀␀␀␀ESP_ERR_WIFI_REGISTRAR␀␀ESP_ERR_WIFI_WPS_TYPE␀␀␀ESP_ERR_WIFI_WPS_SM␀ESP_ERR_ESPNOW_BASE␀ESP_ERR_ESPNOW_NOT_INIT␀ESP_ERR_ESPNOW_ARG␀␀ESP_ERR_ESPNOW_NO_MEM␀␀␀ESP_ERR_ESPNOW_FULL␀ESP_ERR_ESPNOW_NOT_FOUND␀␀␀␀ESP_ERR_ESPNOW_INTERNAL␀ESP_ERR_ESPNOW_EXIST␀␀␀␀ESP_ERR_ESPNOW_IF␀␀␀ESP_ERR_DPP_FAILURE␀ESP_ERR_DPP_TX_FAILURE␀␀ESP_ERR_DPP_INVALID_ATTR␀␀␀␀ESP_ERR_MESH_BASE␀␀␀ESP_ERR_MESH_WIFI_NOT_START␀ESP_ERR_MESH_NOT_INIT␀␀␀ESP_ERR_MESH_NOT_CONFIG␀ESP_ERR_MESH_NOT_START␀␀ESP_ERR_MESH_NOT_SUPPORT␀␀␀␀ESP_ERR_MESH_NOT_ALLOWED␀␀␀␀ESP_ERR_MESH_NO_MEMORY␀␀ESP_ERR_MESH_ARGUMENT␀␀␀ESP_ERR_MESH_EXCEED_MTU␀ESP_ERR_MESH_TIMEOUT␀␀␀␀ESP_ERR_MESH_DISCONNECTED␀␀␀ESP_ERR_MESH_QUEUE_FAIL␀ESP_ERR_MESH_QUEUE_FULL␀ESP_ERR_MESH_NO_PARENT_FOUND␀␀␀␀ESP_ERR_MESH_NO_ROUTE_FOUND␀ESP_ERR_MESH_OPTION_NULL␀␀␀␀ESP_ERR_MESH_OPTION_UNKNOWN␀ESP_ERR_MESH_XON_NO_WINDOW␀␀ESP_ERR_MESH_INTERFACE␀␀ESP_ERR_MESH_DISCARD_DUPLICATE␀␀ESP_ERR_MESH_DISCARD␀␀␀␀ESP_ERR_MESH_VOTING␀ESP_ERR_MESH_XMIT␀␀␀ESP_ERR_MESH_QUEUE_READ␀ESP_ERR_MESH_PS␀ESP_ERR_MESH_RECV_RELEASE␀␀␀ESP_ERR_ESP_NETIF_BASE␀␀ESP_ERR_ESP_NETIF_INVALID_PARAMS␀␀␀␀ESP_ERR_ESP_NETIF_IF_NOT_READY␀␀ESP_ERR_ESP_NETIF_DHCPC_START_FAILED␀␀␀␀ESP_ERR_ESP_NETIF_DHCP_ALREADY_STARTED␀␀ESP_ERR_ESP_NETIF_DHCP_ALREADY_STOPPED␀␀ESP_ERR_ESP_NETIF_NO_MEM␀␀␀␀ESP_ERR_ESP_NETIF_DHCP_NOT_STOPPED␀␀ESP_ERR_ESP_NETIF_DRIVER_ATTACH_FAILED␀␀ESP_ERR_ESP_NETIF_INIT_FAILED␀␀␀ESP_ERR_ESP_NETIF_DNS_NOT_CONFIGURED␀␀␀␀ESP_ERR_FLASH_BASE␀␀ESP_ERR_FLASH_OP_FAIL␀␀␀ESP_ERR_FLASH_OP_TIMEOUT␀␀␀␀ESP_ERR_FLASH_NOT_INITIALISED␀␀␀ESP_ERR_FLASH_UNSUPPORTED_HOST␀␀ESP_ERR_FLASH_UNSUPPORTED_CHIP␀␀ESP_ERR_FLASH_PROTECTED␀ESP_ERR_HTTP_BASE␀␀␀ESP_ERR_HTTP_MAX_REDIRECT␀␀␀ESP_ERR_HTTP_CONNECT␀␀␀␀ESP_ERR_HTTP_WRITE_DATA␀ESP_ERR_HTTP_FETCH_HEADER␀␀␀ESP_ERR_HTTP_INVALID_TRANSPORT␀␀ESP_ERR_HTTP_CONNECTING␀ESP_ERR_HTTP_EAGAIN␀ESP_ERR_ESP_TLS_BASE␀␀␀␀ESP_ERR_ESP_TLS_CANNOT_RESOLVE_HOSTNAME␀ESP_ERR_ESP_TLS_CANNOT_CREATE_SOCKET␀␀␀␀ESP_ERR_ESP_TLS_UNSUPPORTED_PROTOCOL_FAMILY␀ESP_ERR_ESP_TLS_FAILED_CONNECT_TO_HOST␀␀ESP_ERR_ESP_TLS_SOCKET_SETOPT_FAILED␀␀␀␀ESP_ERR_MBEDTLS_CERT_PARTLY_OK␀␀ESP_ERR_MBEDTLS_CTR_DRBG_SEED_FAILED␀␀␀␀ESP_ERR_MBEDTLS_SSL_SET_HOSTNAME_FAILED␀ESP_ERR_MBEDTLS_SSL_CONFIG_DEFAULTS_FAILED␀␀ESP_ERR_MBEDTLS_SSL_CONF_ALPN_PROTOCOLS_FAILED␀␀ESP_ERR_MBEDTLS_X509_CRT_PARSE_FAILED␀␀␀ESP_ERR_MBEDTLS_SSL_CONF_OWN_CERT_FAILED␀␀␀␀ESP_ERR_MBEDTLS_SSL_SETUP_FAILED␀␀␀␀ESP_ERR_MBEDTLS_SSL_WRITE_FAILED␀␀␀␀ESP_ERR_MBEDTLS_PK_PARSE_KEY_FAILED␀ESP_ERR_MBEDTLS_SSL_HANDSHAKE_FAILED␀␀␀␀ESP_ERR_MBEDTLS_SSL_CONF_PSK_FAILED␀ESP_ERR_ESP_TLS_CONNECTION_TIMEOUT␀␀ESP_ERR_WOLFSSL_SSL_SET_HOSTNAME_FAILED␀ESP_ERR_WOLFSSL_SSL_CONF_ALPN_PROTOCOLS_FAILED␀␀ESP_ERR_WOLFSSL_CERT_VERIFY_SETUP_FAILED␀␀␀␀ESP_ERR_WOLFSSL_KEY_VERIFY_SETUP_FAILED␀ESP_ERR_WOLFSSL_SSL_HANDSHAKE_FAILED␀␀␀␀ESP_ERR_WOLFSSL_CTX_SETUP_FAILED␀␀␀␀ESP_ERR_WOLFSSL_SSL_SETUP_FAILED␀␀␀␀ESP_ERR_WOLFSSL_SSL_WRITE_FAILED␀␀␀␀ESP_ERR_ESP_TLS_SE_FAILED␀␀␀ESP_ERR_ESP_TLS_TCP_CLOSED_FIN␀␀ESP_ERR_HTTPS_OTA_BASE␀␀ESP_ERR_HTTPS_OTA_IN_PROGRESS␀␀␀ESP_ERR_PING_BASE␀␀␀ESP_ERR_PING_INVALID_PARAMS␀ESP_ERR_PING_NO_MEM␀ESP_ERR_HTTPD_BASE␀␀ESP_ERR_HTTPD_HANDLERS_FULL␀ESP_ERR_HTTPD_HANDLER_EXISTS␀␀␀␀ESP_ERR_HTTPD_INVALID_REQ␀␀␀ESP_ERR_HTTPD_RESULT_TRUNC␀␀ESP_ERR_HTTPD_RESP_HDR␀␀ESP_ERR_HTTPD_RESP_SEND␀ESP_ERR_HTTPD_ALLOC_MEM␀ESP_ERR_HTTPD_TASK␀␀ESP_ERR_HW_CRYPTO_BASE␀␀ESP_ERR_HW_CRYPTO_DS_HMAC_FAIL␀␀ESP_ERR_HW_CRYPTO_DS_INVALID_KEY␀␀␀␀ESP_ERR_HW_CRYPTO_DS_INVALID_DIGEST␀ESP_ERR_HW_CRYPTO_DS_INVALID_PADDING␀␀␀␀����p?␀?␀␀␀␀|?␀?␁␁␀␀�?␀?␂␁␀␀�?␀?␃␁␀␀�?␀?␄␁␀␀�?␀?␅␁␀␀�?␀?␆␁␀␀�?␀?␇␁␀␀␄@␀␁␀␀␔@␀?       ␁␀␀0@␀?
␁␀␀D@␀?␋␁␀␀\@␀?␁␂␀␀p@␀?␀␑␀␀�@␀?␁␑␀␀�@␀?␂␑␀␀�@␀?␃␑␀␀�@␀?␄␑␀␀�@␀?␅␑␀␀␄A␀?␆␑␀␀$A␀?␇␑␀␀@A␀␑␀␀\A␀?   ␑␀␀xA␀?
␑␀␀�A␀?␎␑␀␀␀B␀?␏␑␀␀␜B␀?␐␑␀␀8B␀?␑␑␀␀XB␀?␒␑␀␀tB␀?␓␑␀␀�B␀?␔␑␀␀�B␀?␕␑␀␀�B␀?␖␑␀␀�B␀?␗␑␀␀␐C␀?␘␑␀␀0C␀?␙␑␀␀LC␀?␀␒␀␀lC␀?␁␒␀␀�C␀?␂␒␀␀�C␀?␃␒␀␀�C␀?␄␒␀␀�C␀?␅␒␀␀�C␀?␀␕␀␀␔D␀?␁␕␀␀(D␀?␂␕␀␀HD␀?␃␕␀␀hD␀?␄␕␀␀�D␀?␅␕␀␀�D␀?␆␕␀␀�D␀?␀␖␀␀�D␀?␁␖␀␀�D␀?␂␖␀␀␄E␀?␃␖␀␀ E␀?␄␖␀␀<E␀?␅␖␀␀LE␀?␀ ␀␀tE␀?␁ ␀␀�E␀?␂ ␀␀�E␀?␀0␀␀�E␀?␁0␀␀�E␀?␂0␀␀�E␀?␃0␀␀␄F␀?␄0␀␀ F␀?␅0␀␀0F␀?␆0␀␀DF␀?␇0␀␀XF␀0␀␀lF␀?  0␀␀�F␀?
0␀␀�F␀?␎0␀␀�F␀?␏0␀␀␌G␀?␒0␀␀(G␀?␓0␀␀<G␀?␔0␀␀TG␀?␕0␀␀lG␀?␖0␀␀�G␀?30␀␀�G␀?40␀␀�G␀?50␀␀�G␀?d0␀␀�G␀?e0␀␀�G␀?f0␀␀␐H␀?g0␀␀$H␀?h0␀␀<H␀?i0␀␀PH␀?j0␀␀lH␀?k0␀␀�H␀?l0␀␀�H␀?�0␀␀�H␀?�0␀␀�H␀?�0␀␀�H␀?␀@␀␀�H␀?␁@␀␀␌I␀?␂@␀␀(I␀?␃@␀␀@I␀?␄@␀␀XI␀?␅@␀␀pI␀?␆@␀␀�I␀?␇@␀␀�I␀@␀␀�I␀?  @␀␀�I␀?
@␀␀<J␀?␎@␀␀TJ␀?␏@␀␀tJ␀?␐@␀␀�J␀?␑@␀␀�J␀?␒@␀␀�J␀?␓@␀␀�J␀?␔@␀␀�J␀?␕@␀␀␜K␀?␖@␀␀4K␀?␗@␀␀HK␀?␘@␀␀\K␀?␙@␀␀tK␀?␚@␀␀�K␀?␀P␀␀�K␀?␁P␀␀�K␀?␂P␀␀�K␀?␃P␀␀�K␀?␄P␀␀$L␀?␅P␀␀LL␀?␆P␀␀tL␀?␇P␀␀�L␀P␀␀�L␀? P␀␀�L␀?
P␀␀�L␀?␀`␀␀$M␀?␁`␀␀8M␀?␂`␀␀PM␀?␃`␀␀lM␀?␄`␀␀�M␀?␅`␀␀�M␀?␆`␀␀�M␀?␀p␀␀�M␀?␁p␀␀�M␀?␂p␀␀␔N␀?␃p␀␀,N␀?␄p␀␀DN␀?␅p␀␀`N␀?␆p␀␀�N␀?␇p␀␀�N␀?␀�␀␀�N␀?␁�␀␀�N␀?␂�␀␀�N␀?␃�␀␀␔O␀?␄�␀␀@O␀?␅�␀␀hO␀?␆�␀␀�O␀?␇�␀␀�O␀�␀␀�O␀?  �␀␀␀P␀?
�␀␀�P␀?␎�␀␀�P␀?␏�␀␀�P␀?␐�␀␀␜Q␀?␑�␀␀DQ␀?␒�␀␀hQ␀?␓�␀␀�Q␀?␔�␀␀�Q␀?␕�␀␀�Q␀?␖�␀␀␐R␀?␗�␀␀8R␀?␘�␀␀`R␀?␙�␀␀�R␀?␚�␀␀�R␀?␛�␀␀�R␀?␜�␀␀�R␀?␀�␀S␀?␁�␀␀ S␀?␀�␀␀@S␀?␁�␀␀TS␀?␂�␀␀pS␀?␀�␀␀�S␀?␁�␀␀�S␀?␂�␀␀�S␀?␃�␀␀�S␀?␄�␀␀�S␀?␅�␀␀␌T␀?␆�␀␀$T␀?␇�␀␀<T␀�␀␀TT␀?␀�␀␀hT␀?␁�␀␀�T␀?␂�␀␀�T␀?␄�␀␀�T␀?␅�␀␀�T␀?esp_timer␀␀␀esp_timer_systimer␀␀E (%u) %s: esp_intr_alloc failed (%#x)
␀E (%u) %s: esp_intr_enable failed (%#x)
␀␀␀␀***ERROR*** A stack overflow in task ␀␀␀ has been detected.␀cpu_start␀␀␀E (%u) %s: Could not reserve internal/DMA pool (error 0x%x)
␀␀␀␀esp_task_wdt_init(CONFIG_ESP_TASK_WDT_TIMEOUT_S, true)␀␀../esp-idf/components/freertos/port/port_common.c␀␀␀main␀␀␀␀res == pdTRUE␀␀␀main_task␀␀␀esp_startup_start_app_common␀␀␀␀pxQueueSetContainer␀../esp-idf/components/freertos/queue.c␀␀pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength␀␀pxQueue␀uxQueueLength > ( UBaseType_t ) 0␀␀␀pxStaticQueue != ((void *)0)␀␀␀␀!( ( pucQueueStorage != ((void *)0) ) && ( uxItemSize == 0 ) )␀␀!( ( pucQueueStorage == ((void *)0) ) && ( uxItemSize != 0 ) )␀␀xSize == sizeof( Queue_t )␀␀uxMaxCount != 0␀uxInitialCount <= uxMaxCount␀␀␀␀!( ( pvItemToQueue == ((void *)0) ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) )␀␀!( ( xCopyPosition == ( ( BaseType_t ) 2 ) ) && ( pxQueue->uxLength != 1 ) )␀␀␀␀!( ( xTaskGetSchedulerState() == ( ( BaseType_t ) 0 ) ) && ( xTicksToWait != 0 ) )␀␀pxQueue->pcHead != ((void *)0) || pxQueue->u.xSemaphore.xMutexHolder == ((void *)0) || pxQueue->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle()␀␀␀␀pxMutex␀pxQueue->uxItemSize == 0␀␀␀␀!( ( pxQueue->pcHead == ((void *)0) ) && ( pxQueue->u.xSemaphore.xMutexHolder != ((void *)0) ) )␀␀␀␀( pxQueue )␀!( ( ( pvBuffer ) == ((void *)0) ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) )␀␀␀xInheritanceOccurred == ( ( BaseType_t ) 0 )␀␀␀␀!( ( pvBuffer == ((void *)0) ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) )␀␀␀vQueueDelete␀␀␀␀xQueueReceiveFromISR␀␀␀␀xQueueSemaphoreTake␀xQueueReceive␀␀␀xQueueGiveFromISR␀␀␀xQueueGenericSendFromISR␀␀␀␀prvNotifyQueueSetContainer␀␀xQueueGenericSend␀␀␀xQueueCreateCountingSemaphore␀␀␀xQueueTakeMutexRecursive␀␀␀␀xQueueGiveMutexRecursive␀␀␀␀xQueueGenericCreate␀xQueueGenericCreateStatic␀␀␀xQueueGenericReset␀␀pxTCB␀␀␀../esp-idf/components/freertos/tasks.c␀␀pxTCB->ucStaticallyAllocated == ( ( uint8_t ) 2 )␀␀␀xTaskGetSchedulerState() != ( ( BaseType_t ) 0 )␀␀␀␀pxPreviousWakeTime␀␀( xTimeIncrement > 0U )␀uxSchedulerSuspended[xPortGetCoreID()] == 0␀( ( ( ( pxDelayedTaskList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ? ( ( BaseType_t ) 1 ) : ( ( BaseType_t ) 0 ) ) )␀␀␀uxSchedulerSuspended[xPortGetCoreID()]␀␀xNextTaskUnblockTime >= xTickCount␀␀( ( &( pxReadyTasksLists[ uxTopPriority ] ) )->uxNumberOfItems ) > 0␀␀␀␀pxEventList␀pxUnblockedTCB␀␀pxTimeOut␀␀␀pxTicksToWait␀␀␀pxTCB == pxCurrentTCB[xPortGetCoreID()]␀pxTCB->uxMutexesHeld␀␀␀␀pxTCB != pxCurrentTCB[xPortGetCoreID()]␀xTaskToNotify␀␀␀pxTCB->ulNotifiedValue == ~0UL␀␀( ( &( pxTCB->xEventListItem ) )->pvContainer ) == ((void *)0)␀␀IDLE␀␀␀␀xReturn != ( -1 )␀␀␀vTaskNotifyGiveFromISR␀␀vTaskPriorityDisinheritAfterTimeout␀xTaskPriorityDisinherit␀xTaskCheckForTimeOut␀␀␀␀xTaskRemoveFromEventList␀␀␀␀vTaskPlaceOnEventList␀␀␀vTaskSwitchContext␀␀��������������������xTaskIncrementTick␀␀pcTaskGetName␀␀␀xTaskResumeAll␀␀vTaskStartScheduler␀vTaskDelay␀␀prvDeleteTCB␀␀␀␀prvDeleteTLS␀␀␀␀vTaskDelete␀h != ((void *)0)␀␀␀␀../esp-idf/components/newlib/locks.c␀␀␀␀xQueueGetMutexHolder( ( h ) ) == ((void *)0)␀␀␀␀lock_release_generic␀␀␀␀lock_acquire_generic␀␀␀␀_lock_close␀result␀␀../esp-idf/components/cxx/cxx_guards.cpp␀␀␀␀g->pending && "tried to release a guard which wasn't acquired"␀␀!g->ready && "tried to abort a guard which is ready"␀␀␀␀g->pending && "tried to release a guard which is not acquired"␀␀void __cxa_guard_abort(__cxxabiv1::__guard*)␀␀␀␀void _@v@v@v@v@v@v@v@v@�@�@␐@4@�@␀␀␀␀�@�@␐@l@�@␀␀␀␀�@␐@0@��or_@ @␀␀␀␀�@$@@@␀␀␀␀�@␀␀␀␀�� __cxa_@��rd_ac@␄�re(__@�@,�iv1@␀␀␀␀TUSB:DCD␀␀␀␀E (%u) %s: Unknown Condition@v@�@�@v@�@�@�@v@v@
␀␀␀E (%u) %s: Complete but not empty: %u/%u
␀␀␀␀    ␁␀␀␀␀␀�@]@]@␒@]@]@]@]@]@]@]@]@]@]@]@]@]@]@y@]@]@]@]@]@]@]@�@�@]@]@]@]@]@]@]@␒@]@�@␂�␃␀blk >= 0 && blk < EFUSE_BLK_MAX␀../esp-idf/components/efuse/src/esp_efuse_utility.c␀num_reg <= (range_read_addr_blocks[blk].end - range_read_addr_blocks[blk].start) / sizeof(uint32_t)␀efuse␀␀␀E (%u) %s: Range of data does not match the coding scheme
␀␀bits_counter <= req_size␀␀␀␀esp_efuse_utility_read_reg␀␀esp_efuse_utility_process␀␀␀,�A?@�A?D�A?X�A?\�A?x�A?|�A?��A?��A?��A?��A?ؠA?ܠA?��A?��A?␘�A?␜�A?8�A?<�A?X�A?\�A?x�A?core_id<portNUM_PROCESSORS␀␀../esp-idf/components/esp_system/crosscore_int.c␀␀␀␀err␀esp_crosscore_int_send␀␀esp_crosscore_int_init␀␀␁␀␀␀␀␀␀␀␁␀␀␀␁␀␀␀␀␀␀␀␁␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀␀␀␀␀␁␀␀␀␁␀␀␀␀␀␀␀␁␀␀␀␁␀␀␀␂␀␀␀␁␀␀␀␁␀␀␀␂␀␀␀␂␀␀␀␁␀␀␀␀␀␀␀␁␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀␁␀␀␀␀␀␀␀␃␀␀␀␂␀␀␀␂␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␇␀␀␀␀␀␀␀␁␀␀␀␃␀␀␀␂␀␀␀␂␀␀␀␅␀␀␀␂␀␀␀␂␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␂␀␀␀␀␀␀␀␀␀␀␀␂␀␀␀␀␀␀␀␀␀␀␀␂␀␀␀␀␀␀␀␀␀␀␀␃␀␀␀␁␀␀␀␁␀␀␀␃␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␀␀␀␁␀␀␀␄␀␀␀␀␀␀␀␁␀␀␀␅␀␀␀␀␀␀␀␀␀␀␀␃␀␀␀␀␀␀␀␁␀␀␀␄␀␀␀␁␀␀␀␀␀␀␀␃␀␀␀␂␀␀␀␂␀␀␀␄␀␀␀␁␀␀␀␁␀␀␀␅␀␀␀␀␀␀␀␁␀␀␀(pxRingbuffer->xItemsWaiting > 0) && ((pxRingbuffer->pucRead != pxRingbuffer->pucWrite) || (pxRingbuffer->uxRingbufferFlags & ( ( UBaseType_t ) 4 )))␀␀␀../esp-idf/components/esp_ringbuf/ringbuf.c␀pxRingbuffer->pucRead >= pxRingbuffer->pucHead && pxRingbuffer->pucRead < pxRingbuffer->pucTail␀pxRingbuffer->pucRead == pxRingbuffer->pucFree␀␀*pvItem2 < *pvItem1␀xIsSplit == ( ( BaseType_t ) 0 )␀␀␀␀xReturn <= pxRingbuffer->xSize␀␀pxRingbuffer␀␀␀␀ppvItem != ((void *)0) || xItemSize == 0␀␀␀␀(pxRingbuffer->uxRingbufferFlags & (( ( UBaseType_t ) 2 ) | ( ( UBaseType_t ) 1 ))) == 0␀␀␀␀pvItem != ((void *)0)␀␀␀pvItem != ((void *)0) || xItemSize == 0␀vRingbufferReturnItem␀␀␀prvReceiveGeneric␀␀␀xRingbufferReceive␀␀xRingbufferSend␀prvGetFreeSize␀␀␀␀␀␀␆␀␀␀␁␁␁␁␁␁␁␁␁␁␁␃␁␁␇␃␅␁␁␂␂␂␃␃␄␄␅␃␄␃␄␅�@�@�@�@�@␌@␌@␌@␌@�@�@�@�@�@y@�@�@�@�@�@�@�@�@�@�@�@␀␀␀␀␀␀␀␀%␆      @�␅     @␂␆     @%␆     @H␆     @k␆     @k␆     @k␆     @k␆     @�␅     @␑␆     @%␆     @H␆     @__gnu_cxx::__concurrence_lock_error␀__gnu_cxx::__concurrence_unlock_error␀St9exception␀␀␔t␀?Fs␀?N9__gnu_cxx24__concurrence_lock_errorE␀␀@t␀?\s␀?Ts␀?N9__gnu_cxx26__concurrence_unlock_errorE␀␀␀␀@t␀?�s␀?Ts␀?␀␀␀␀␀␀␀␀␄␌       @,␌     @�␋     @␀␀␀␀␀␀␀␀␘␌     @@␌     @�␋     @␀St9bad_alloc␀␀␀@t␀?�s␀?Ts␀?␀␀␀␀␀␀␀␀�␎ @�␎     @`�     @`�     @(␏     @␐�     ␏       @�␎     @D�     @␀␀␀␀␀␀␀␀<␒    @P␒     @`�     @`�     @(␏     @␐�     @D␓     @�␒     @�␒     @C␀POSIX␀.␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀C␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␘␀@␄z␀@␀␀␀␀l��?lt␀?mt␀?mt␀?mt␀?mt␀?mt␀?mt␀?mt␀?mt␀?mt␀?��������������␀␀␁␀ASCII␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀ASCII␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀r    @�␝     @�␝     @␀␞     @A      @?      @�␟     @␌      @�!     @5␞     @�!     @�!     @�!   @�!      @�!     @5␞     @5␞     @5␞     @5␞     @5␞     @5␞     @5␞     @�!     @5␞     @5␞     @5␞     @�!     @5␞     @�!     @5␞     @5␞     @␛␞     @5␞     @5␞     @5␞     @5␞   @5␞      @5␞     @5␞     @5␞     @�!     @5␞     @,␞     @␛␞     @�!     @�!     @�!     @5␞     @␛␞     @5␞     @5␞     @5␞     @5␞     @�!     @␛␞     @�!     @5␞     @5␞     @�!   @5␞      @␛␞     @5␞     @5␞     @␛␞     @W␞     @�␞     @8␟     @n␟     @�␟     @�␞     @D!     @�      @D!     @␗!     @␗!     @D!     @�#     @HD     @HD     @�#     @HD     @HD   @HD      @]#     @HD     @HD     @�#     @�$     @HD     @�$     @�$     @HD     @�%     @�%     @�%     @�%     @�%     @�%     @�%     @�%     @�%     @�%     @HD     @HD     @HD   @HD      @HD     @HD     @HD     @�*     @HD     @�&     @f'     @�*     @�*     @�*     @HD     @HD     @HD     @HD     @,&     @HD     @HD     @�5     @HD     @HD     @HD     @<:   @HD      @Y;     @HD     @HD     @�>     @HD     @HD     @HD     @HD     @HD     @HD     @HD     @HD     @�*     @HD     @�&     @q'     @�*     @�*     @�*     @1&     @q'     @r&   @HD      @M&     @HD     @62     @�5     @T9     @r&     @HD     @<:     @&#     @d;     @HD     @HD     @�>     @HD     @&#     @0000000000000000                INF␀inf␀NAN␀nan␀0123456789abcdef␀0123456789ABCDEF␀0␀0123456789abcdefghijklmnopqrstuvwxyz␀␀␀␀fT        @�Q     @�Q     @�Q     @5T     @3T     @�S     @␀T     @�U     @)R     @�U     @�U     @�U     @�U   @�U      @)R     @)R     @)R     @)R     @)R     @)R     @)R     @�U     @)R     @)R     @)R     @�U     @)R     @�U     @)R     @)R     @␏R     @)R     @)R     @)R     @)R     @)R   @)R      @)R     @)R     @�U     @)R     @ R     @␏R     @�U     @�U     @�U     @)R     @␏R     @)R     @)R     @)R     @)R     @�U     @␏R     @�U     @)R     @)R     @�U     @)R   @␏R      @)R     @)R     @␏R     @KR     @�R     @,S     @bS     @�S     @�R     @8U     @�T     @8U     @␋U     @␋U     @8U     @�X     @�r     @�r     @�X     @�r     @�r     @�r   @�X      @�r     @�r     @�X     @�Y     @�r     @�Y     @�Y     @�r     @-[     @3[     @3[     @3[     @3[     @3[     @3[     @3[     @3[     @3[     @�r     @�r     @�r     @�r   @�r      @�r     @�r     @�r     @�r     @�[     @�\     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�c     @�r     @�r     @�r     @�h     @�r   @|i      @�r     @�r     @"m     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�r     @�[     @�\     @�r     @�r     @�r     @n[     @�\     @�[     @�r   @�[      @�r     @N`     @␆d     @�g     @�[     @�r     @�h     @^X     @�i     @�r     @�r     @�X     @�r     @^X     @0000000000000000                ␞{     @Lx     @Qx     @�x   @�z      @�z     @�z     @�z     @u|     @�x     @T|     @=|     @u|     @u|     @u|     @�x     @�x     @�x     @�x     @�x     @�x     @�x     @=|     @�x     @�x     @�x     @j|   @�x      @=|     @�x     @�x     @�x     @�x     @�x     @�x     @�x     @�x     @�x     @�x     @�x     @u|     @�x     @�x     @�x     @u|     @u|     @u|     @�x     @�x     @�x   @�x      @�x     @�x     @j|     @�x     @j|     @�x     @�x     @j|     @�x     @�x     @�x     @�x     @�x     @␃y     @:y     @�y     @␚z     @Zz     @zy     @�{     @�{     @�{   @�{      @�{     @�{     @3␡     @��     @��     @A␡     @��     @��     @��     @�~     @��     @��     @F␡     @H�     @��     @C�     @S�     @��     @��     @��     @��     @��   @��      @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @"�     @␆�     @��     @��     @��     @��     @��     @��   @��      @́       @��     @��     @��     @��     @��     @��     @�      @��     @␁�     @��     @��     @]�     @��     @��     @��     @��     @��     @��     @��     @��     @��   @��      @"�     @␑�     @��     @��     @��     @с      @␑�     @␔�     @��     @�      @��     @ۍ      @��     @��     @␔�     @��     @�      @�~     @␌�     @��     @��     @f�   @��      @�~     @0000000000000000                Infinity␀NaN␀␀␀␀␀␀␀␀␅␀␀␀␙␀␀␀}␀␀␀␀␀␀␀��ؗ�Ҝ<3���#�I9=��D�␏�2����[%Co�d(␆�
␀��7y�AC␗n␅����F��?�␃O8M2␝0�Hw�Z<�s␡�O␕u␀␀␀␀␀␀�?␀␀␀␀␀␀$@␀␀␀␀␀␀Y@␀␀␀␀␀@�@␀␀␀␀␀��@␀␀␀␀␀j�@␀␀␀␀��.A␀␀␀␀�␒cA␀␀␀␀�חA␀␀␀␀e��A␀␀␀ _�␂B␀␀␀�vH7B␀␀␀��␚mB␀␀@�0�B␀␀�␞ļ�B␀␀4&�k␌C␀��7y�AC␀�؅W4vC␀�Ngm��C␀=�`�X�C@��x␝�␕DP����␚KD��M␆���D�J��␂-�D���yCx�D��  @(�     @-�     @��     @��     @��     @p�     @��     @Q�     @��     @0�     @␙�     @Q�     @Q�     @Q�     @��     @��   @��      @��     @��     @��     @��     @␙�     @��     @��     @��     @F�     @��     @␙�     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��   @Q�      @��     @��     @��     @Q�     @Q�     @Q�     @��     @��     @��     @��     @��     @��     @F�     @��     @F�     @��     @��     @F�     @��     @��     @��     @��   @��      @��     @␖�     @��     @��     @6�     @V�     @��     @s�     @��     @��     @��     @��     @␇�     @��     @��     @␘�     @��     @��     @��     @��     @��     @��   @␝�      @$�     @��     @␟�     @3�     @��     @e�     @k�     @k�     @k�     @k�     @k�     @k�     @k�     @k�     @k�     @��     @��     @��     @��     @��     @��     @��   @��      @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @3�     @��     @��     @��     @��     @��     @��     @��     @��   @Z�      @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��   @>�      @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @��     @0000000000000000                ␀␁␀␃␄␀␀␀␀␀␁␀␃␄␀␀␀␀␀␀␇␃␄␀␀␀␀␀␀␀␃␄␀␀␀␀␀␀␀␀␄␀␀␀␀␀␂␀␃␄␀␀␀␀␀␁␀␅␆␅␀␀␀␀␁␀␅␆␀␀␀␀␀␀␀␃␄␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␁␂␋␄␋␅␆␁␋␁␂␋␄␋␅␆␁␋␋␋␃␄␋␅␋␋␋␋␋␋␄␋␅␋␋␋␋␋␋␋␋␋␋␋␋␋␄␋␋␇␋␋␋ ␋␄␋␅␋␋␋␋
��␁␀��␁␀��␁␌␄␃␄␄␄␁␁␋␋␋␋␋␋␋␋␋␋␋␋␋␀␀␀␀␀␀␀␀␀
␆␀␀␒␔)␀3␆␀␀��␁␒␎␆␀␀U␃w␀�␁␆␀␀�␁␃w␀��␁␌␎␆␀␀K␎␀␀Y␏9␀��␁␎␎␆␀␀␔␔�␁␀�␁␆␀␀��␁␄␎␆␀␀��␁␌␎␆␀␀W␆␀␀e␃D␀��␁␌␎␆␀␀V␆␀␀b␃D␀��␁␌␎␆␀␀W␆␀␀i␃D␀��␁␀��␁␀��␁␌�␁␆�␇␀�␂�␅␀␀��␁␌
␆"(␁.␌␀␀␡␀␀␀��␁␀��␁␀��␁␀��␁␀��␁␌␁␀␀␀␀␀␀�␀␕␁␌␛␆!␁B␟i␀w␆␀␀␁␀␀␀␀␀␀��␁␀��␁␀��␁␀�␀
␆␀␀␔␆@␀J␆␀␀��␁␀␀␀␀�␀␑␁␄␝␃#␃␀␀␁}␀␀␀␀t␀?�␀␝␁␔&␆L␃?2�␁␁�␁!�␁␁�␁␌␀␀␡␀␀}␀␀␀␀␀␀␀�␀␙␁␌␃        ␌␁␕␆␛␅&␌␀␀␁␀␡␀␀}␀␀␀␀␀␀��␁␀��␁␀��␁␀␀␀␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀`@ ␃␀␀␄␃␀␀␀␎p␀␔␀␀␀,␀␀␀�@␔␀␀␀␄␃␀␀␀␎␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀�@"␀␀␀␄␃␀␀␀␎0␀␔␀␀␀\␀␀␀ @.␀␀␀␄␃␀␀␀␎0␀␔␀␀␀t␀␀␀P@(␀␀␀␄␃␀␀␀␎0␀␔␀␀␀�␀␀␀x@␑␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�@>␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�@5␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀␐@K␁␀␀␄␃␀␀␀␎�␁␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀␄␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀␜␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀4␁␀␀\@#␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀L␁␀␀�@&␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀d␁␀␀�@�␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀|␁␀␀@@2␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀0�        @␔␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@        ␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀�@␑␁␀␀␄␃␀␀␀␎0␀␔␀␀␀\␀␀␀�@�␀␀␀␄␃␀␀␀␎P␀␔␀␀␀t␀␀␀L@0␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀|@␚␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�@␚␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�@␜␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�@␚␀␀␀␄␃␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇      @␀␌␁␀␀␀␘␀␀␀ ␀␀␀�@�␂␀␀␄␀␀␀␀␄␃␀␀␀␎P␘␀␀␀<␀␀␀␜@`␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀X␀␀␀|@$␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀t␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀�@␎␀␀␀␄<�␀?␄␃␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␜␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␌␇0␀␀␀␘␀␀␀�␀␀␀@@␒␀␀␀␄@�␀?␄␃␀␀␀␎ ␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇  @␀␌␁␀␀␀␜␀␀␀ ␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎�␂␀␀␀␘␀␀␀@␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀\␀␀␀T@␆␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀x␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␘␀␀␀␄␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀ ␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀<␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀X␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␜␀␀␀t␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎�␁␀␀␀␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␄␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␘␀␀␀ ␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␘␀␀␀<␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␘␀␀␀X␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀t␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␀␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀t@4␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎@␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀0�  @␔␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀D␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀\␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎0␀␔␀␀␀t␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀��        @ ␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎�␁␔␀␀␀D␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀\␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀t␀␀␀�@$␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀��   @␔␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎p␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀␄␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀␜␁␀@.␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀4␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀L␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀d␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀|␁␀␀8@s␀␀␀␄␃␀␀␀␎P␀␔␀␀␀�␁␀␀�@0␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␁␀␀�@$␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀␌␂␀␀␀@␔␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀$␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀<␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀T␂␀␀␔@ ␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀l␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎�␁␔␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␂␀␀4@�␁␀␀␄␃␀␀␀␎0␀␔␀␀␀␔␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀,␃␀␀�@&␀␀␀␄␃␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇     @␀␌␁␀␀␀␘␀␀␀ ␀␀␀0�       @␔␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀<␀␀␀$@*␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀X␀␀␀P@&␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀t␀␀␀x@=␀␀␀␄D�␀?␄␃␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎@␘␀␀␀␀␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␜␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀8␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀T␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀p␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎0␀␔␀␀␀,␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀D␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀\␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀t␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎@␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎@␀␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎@␀␔␀␀␀␄␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎@␀␔␀␀␀␜␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀4␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀L␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀d␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀`@6␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@0␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀�@'␀␀␀␄␃␀␀␀␎0␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇  @␀␌␁␀␀␀␘␀␀␀ ␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀<␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀X␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇        @␀␌␁␀␀␀␘␀␀␀ ␀␀␀␐@�␀␀␀␄T�␀?␄␃␀␀␀␎0␘␀␀␀<␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀X␀␀␀␀␀␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␀␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␜␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀8␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀T␁␀␀X@�␀␀␀␄z�␀?␄␃␀␀␀␎0␘␀␀␀p␁␀␀␐@␖␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␁␀␀(@�␀␀␀␄��␀?␄␃␀␀␀␎ ␘␀␀␀�␁␀␀�@z␀␀␀␄��␀?␄␃␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀␘␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀4␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀P␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀l␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␂␀␀0@w␀␀␀␄��␀?␄␃␀␀␀␎ ␘␀␀␀�␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␂␀␀�@~␀␀␀␄��␀?␄␃␀␀␀␎ ␘␀␀␀␔␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀0␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀L␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀h␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␃␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␐␄␀␀(@␔␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀,␄␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀H␄␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀d␄␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␄␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀<@�␀␀␀␄␃␀␀␀␎p␀␔␀␀␀,␀␀␀�@�␀␀␀␄␃␀␀␀␎`␀␔␀␀␀D␀␀␀T@7␁␀␀␄␃␀␀␀␎�␂␔␀␀␀\␀␀␀�@�␁␀␀␄␃␀␀␀␎`␀␔␀␀␀t␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀�␀␀␀P@x␂␀␀␄␃␀␀␀␎�␁␔␀␀␀�␀␀␀�@l␁␀␀␄␃␀␀␀␎�␁␔␀␀␀�␀␀␀4@G␁␀␀␄␃␀␀␀␎�␁␔␀␀␀�␀␀␀|@�␂␀␀␄␃␀␀␀␎�␁␔␀␀␀�␀␀␀P@$␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀␄␁␀␀t@$␁␀␀␄␃␀␀␀␎@␀␔␀␀␀␜␁␀␀�@�␀␀␀␄␃␀␀␀␎p␀␔␀␀␀4␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀L␁␀␀<@�␀␀␀␄␃␀␀␀␎p␀␔␀␀␀d␁␀␀␘@E␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀|␁␀␀`@�␀␀␀␄␃␀␀␀␎p␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀�␁␀␀␜@�␀␀␀␄␃␀␀␀␎`␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎p␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇     @␀␌␁␀␀␀␘␀␀␀ ␀␀␀�@␔␀␀␀␄Ą␀?␄␃␀␀␀␎ ␘␀␀␀<␀␀␀�@␘␀␀␀␄Ȅ␀?␄␃␀␀␀␎ ␘␀␀␀X␀␀␀�@*␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀t␀␀␀␐@,␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀<@"␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀`@$␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀�@$␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀�@0␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀␀␁␀␀�@ ␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀␜␁␀␀�@$␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀8␁␀␀␜@&␀␀␀␄␀␀␀␀␄␃␀␀␀␎0␘␀␀␀T␁␀␀D@&␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀p␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀l@␕␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@␕␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀�@␐␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀\␀␀␀�@␝␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀t␀␀␀�@␝␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�@␚␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀�@$␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@�␀␀␀␄␃␀␀␀␎0␀␔␀␀␀D␀␀␀�@�␀␀␀␄␃␀␀␀␎0␀␔␀␀␀\␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀t␀␀␀␜@�␀␀␀␄␃␀␀␀␎0␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀�@�␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@�␀␀␀␄␃␀␀␀␎0␀␔␀␀␀D␀␀␀,@B␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀p@)␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀D␀␀␀�@T␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀\␀␀␀�@�␀␀␀␄␃␀␀␀␎P␀␔␀␀␀t␀␀␀�@h␀␀␀␄␃␀␀␀␎0␀␔␀␀␀�␀␀␀�@e␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀`@�␀␀␀␄␃␀␀␀␎@␀␔␀␀␀�␀␀␀4@␆␁␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀<@�␁␀␀␄␃␀␀␀␎�␁␔␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎0␀␔␀␀␀␄␁␀␀␜@8␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀␜␁␀␀T@o␁␀␀␄␃␀␀␀␎`␀␔␀␀␀4␁␀␀�@�␀␀␀␄␃␀␀␀␎P␀␔␀␀␀L␁␀␀�@ ␂␀␀␄␃␀␀␀␎�␁␔␀␀␀d␁␀␀�␁␀␀␄␃␀␀␀␎�␁␔␀␀␀|␁␀␀�@␘␁␀␀␄␃␀␀␀␎�␁␔␀␀␀�␁␀␀␀@T␀␀␀␄␃␀␀␀␎`␀␔␀␀␀�␁␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎`␀␔␀␀␀�␁␀␀T@�␃␀␀␄␃␀␀␀␎�␁␔␀␀␀�␁␀␀D@t␁␀␀␄␃␀␀␀␎`␀␔␀␀␀�␁␀␀�@5␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀␌␂␀␀(@1␀␀␀␄␃␀␀␀␎0␀␔␀␀␀$␂␀␀\@,␀␀␀␄␃␀␀␀␎0␀␔␀␀␀<␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀T␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎`␀␔␀␀␀l␂␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇   @␀␌␁␀␀␀␘␀␀␀ ␀␀␀�@n␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀<␀␀␀$@�␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀X␀␀␀␀@8␄␀␀␄̄␀?␄␃␀␀␀␎p␘␀␀␀t␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇     @␀␌␁␀␀␀␘␀␀␀ ␀␀␀8@b␀␀␀␄܄␀?␄␃␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀�@,␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@(␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀�@␔␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀h@&␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�@F␁␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀@�␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀\␀␀␀d@�␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀\@�␁␀␀␄␃␀␀␀␎@␀␔␀␀␀,␀␀␀`@d␀␀␀␄␃␀␀␀␎@␀␔␀␀␀D␀␀␀�@t␀␀␀␄␃␀␀␀␎`␀␔␀␀␀\␀␀␀�@␕␀␀␀␄␃␀␀␀␎0␀␘␀␀␀t␀␀␀�@�␀␀␀␄␅␀␀␀␌␇�␁␀␀␀␘␀␀␀�␀␀␀�@�␀␀␀␄␅␀␀␀␌␇�␁␀␀␀␘␀␀␀�␀␀␀,@�␀␀␀␄␅␀␀␀␌␇�␁␀␀␀␘␀␀␀�␀␀␀�@�␀␀␀␄␇␀␀␀␌␇�␁␀␀␀␔␀␀␀�␀␀␀\@␐␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀l@P␀␀␀␄␅␀␀␀␌␇p␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀ @Z␀␀␀␄␃␀␀␀␎0␀␔␀␀␀,␀␀␀|@P␀␀␀␄␃␀␀␀␎0␀␔␀␀␀D␀␀␀�@�␃␀␀␄␃␀␀␀␎P␀␔␀␀␀\␀␀␀`␃   @:␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀t␀␀␀�␃@␐␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�␃ @␖␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�␃ @2␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�␃ @␐␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␄   @␒␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀␜␄ @�␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀␄␁␀␀�␄ @␌␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀␜␁␀␀�␄ @␔␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀4␁␀␀�␄        @�␀␀␀␄␃␀␀␀␎0␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇       @␀␌␁␀␀␀␘␀␀␀ ␀␀␀��       @4␀␀␀␄␀␀␀␀␄␃␀␀␀␎0␘␀␀␀<␀␀␀�␅     @�␀␀␀␄␀␀␀␀␄␃␀␀␀␎0␘␀␀␀X␀␀␀�␆     @N␀␀␀␄␀␀␀␀␄␃␀␀␀␎0␘␀␀␀t␀␀␀�␆     @8␀␀␀␄␀␀␀␀␄␃␀␀␀␎@␘␀␀␀�␀␀␀␘␇    @X␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀p␇     @␜␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀�␇     @h␀␀␀␄␀␀␀␀␄␃␀␀␀␎0␘␀␀␀�␀␀␀�␇     @�␂␀␀␄�␀?␄␃␀␀␀␎p␘␀␀␀␀␁␀␀�
        @}␀␀␀�␀?␄␃␀␀␀␎@␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇     @␀␌␁␀␀␀␘␀␀␀ ␀␀␀H␋       @ ␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀<␀␀␀h␋     @␚␀␀␀␄ �␀?␄␃␀␀␀␎ ␘␀␀␀X␀␀␀�␋     @6␀␀␀␄$�␀?␄␃␀␀␀␎ ␘␀␀␀t␀␀␀�␋     @␒␀␀␀␄(�␀?␄␃␀␀␀␎ ␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇  @␀␌␁␀␀␀␘␀␀␀ ␀␀␀T␌       @#␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀<␀␀␀x␌     @<␀␀␀␄,�␀?␄␃␀␀␀␎ ␘␀␀␀X␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀t␀␀␀�␌ @␚␀␀␀␄=�␀?␄␃␀␀␀␎0␘␀␀␀�␀␀␀�␌     @␋␀␀␀␄A�␀?␄␃␀␀␀␎ ␌␀␀␀␀␀@!␀␀␀␄I�␀?␄␃␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎ ␘␀␀␀␀␁␀␀␘␎␀␀␄␀␀@R␀␀␀␄M�␀?␄␃␀␀␀␎ ␘␀␀␀␜␁␀␀l␎␀␀␄␀␀@␋␀␀␀␄]�␀?␄␃␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␐�␀␀t␀␀@2␀␀␀␄␃␀␀␀␎0␀␔␀␀␀,␀␀␀(␏        @ ␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀�␏ @b␀␀␀␄␃␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇       @␀␌␁␀␀␀␘␀␀␀ ␀␀␐ @6␀␀␀␄d�␀?␄␃␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀`␐     @+␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�␐        @*␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀D␀␀␀�␐ @P␀␀␀␄␃␀␀␀␎ ␀␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇       @␀␌␁␀␀␀␘␀␀␀ ␀␀␀8␑       @␋␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀<␀␀␀D␑     @�␀␀␀␄x�␀?␄␃␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀�␒    @,␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀�␒ @�␀␀␀␄␃␀␀␀␎@␀␔␀␀␀D␀␀␀D␓ @&␀␀␀␄␃␀␀␀␎ ␀␘␀␀␀␀␀␀␀␃zPL␀␁|␀␆␀�␇       @␀␌␁␀␀␀␘␀␀␀ ␀␀␀T␌       @+␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀<␀␀␀x␌   @<␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀X␀␀␀l␓      @2␀␀␀␄��␀?␄␃␀␀␀␎ ␘␀␀␀t␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␀␀␀�␓ @␚␀␀␀␄��␀?␄␃␀␀␀␎0␘␀␀␀�␀␀␀�␓     @       ␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀�␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␄␀␀␀␀␎0␘␀␀␀�␀␀␀�␓ @␚␀␀␀␄��␀?␄␃␀␀␀␎0␘␀␀␀␀␁␀␀�␓      @       ␀␀␀␄␀␀␀␀␄␃␀␀␀␎ ␘␀␀␀␜␁␀␀␌␔       @␋␀␀␀␄��␀?␄␃␀␀␀␎ ␌␀␀␀␀␀␀␀␃␀␁|␀␌␁␀␔␀␀␀␔␀␀␀0�     @␔␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀,␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎ ␀␔␀␀␀D␀␀␀␀␀␀␀␀␀␀␀␄␀␀␀␀␎P␀␔␀␀␀\␀␀␀$␔        @1␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀t␀␀␀X␔ @0␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�␔ @.␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�␔ @8␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀�␔ @8␀␀␀␄␃␀␀␀␎ ␀␔␀␀␀�␀␀␀(␕ @ ␀␀␀␄␃␀␀␀␎ ␀␀␀␀␀␀␀␀␀�@t@�@h@␔@\@�@␌@�@␜@�@D@@\@�␋     @�␌     @␘␎     @�␓     @T␕     @�����@@@<@�␋   @�␌     @l␎     @␌␔     @␀␀␀␀�␟␀P␀ ␀P␀��?␀��?␀␀P?␀␀�?␀@�?���?���?␐␘�?␐��?␀␀␀@���?�␞␀␀␜d␂@␁␀␀␀␂␀:0       ␀␀␀␀␀@?␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀A?␀␀␀␀␁␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀���?���?␔��?8␀�?�␀�?���?���?␀␀␀␀��?�␀␀␀␀��?�␀␀␀␀��?�␀␀␀␀␁␀␀␀��?�␀␀␀␀␀␀@?␂␀␀␀␀␀B?␁␀␀␀␀�A?␀␀␀␀␀�@?␁␀␀␀␀�A?␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀��␀����?�␀␀␀␀␀␀@?����␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀D@l@␀␀A?����␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀D@l@,�    @␅␀␀␀������?�␀␀␀␀��?�␀␀␀␀�␁␀␀���?��?�␀␀␀␀␃␀␀␀␀␀␀␀␀␀␀␀␀@@?␀␀␀␀��?�␀␀␀␀��?�␀␀␀␀␀␀@?��?�␀␀␀␀␀␀␀␀␀␀A?��?�␀␀␀␀␀␀␀␀␀␀␀␀H@␀␀␀␀H@␁␀␀␀H@␂␀␀␀H@␃␀␀␀H@␄␀␀␀H@␅␀␀␀@␆␀␀␀H@␇␀␀␀H␀␀␀H@ ␀␀␀H@
␀␀␀H@␎␀␀␀H@␏␀␀␀H@␐␀␀␀H@␑␀␀␀H@␒␀␀␀H@␓␀␀␀H@␔␀␀␀H@␕␀␀␀H@␖␀␀␀H@␗␀␀␀H@␘␀␀␀H@␙␀␀␀H@␚␀␀␀H@␛␀␀␀H@␜␀␀␀H@␝␀␀␀H@␞␀␀␀H@␟␀␀␀Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@Td␂@��?�␀␀␀␀������������������?�␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀��?�␀␀␀␀��?�␀␀␀␀␌�␂@��␂@��␂@��␂�␂@(�␂@�@L@Pt␂@@t␂@X@�@P@@�@�@�@␀␀␀␀L@<@�@l@@�r␂@␌s␂@ s␂@ s␂@Xs␂@hs␂@xs␂@�s␂@�s␂@�s␂@␀␀␀␀␀␀␀␀��?�␀␀␀␀␐␀␌␀�␏�?␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␁␀␀␀�k␀?␀␀␀␀��?�␀␀␀␀␁␀␀␀����(�␂@�␓   @pt␀?�]␂@�]␂@␀@HS␂@P��?|u␂@�u␂@(@ U␂@���?␀␀␀␀���?␀␀␀␀␅␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀<\␂@�\␂@␔]␂@�\␂@T\␂@H\␂@�\␂@�\␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀`]␂@@]␂@␀␀␃␀␀]␂@␀␀=␀��>␀�'␀␀␀␀␀␀␀␀␀ �␇␀X�␂@��␂@d�␂@T�␂@|�␂@ܷ␂@��␂@�␂@4�␂@ @X�␂@��␂@D@t�␂@<�␂@P�␂@,�␂@H�␂@␀␀␀␀h�␂@��␂@␘�␂@Tasks currently running:␀␀␀␀CPU 0/1␀CPU 1␀␀␀CPU 0␀␀␀␘␀␀␀msb - lsb < 8␀␀␀../esp-idf/components/esp_hw_support/port/esp32s2/regi2c_ctrl.c␀i2c_rtc_write_reg_mask␀␀i2c_rtc_read_reg_mask␀␀␀rtc_clk␀E (%u) %s: invalid frequency
␀␀␀xtal_freq == RTC_XTAL_FREQ_40M␀␀../esp-idf/components/esp_hw_support/port/esp32s2/rtc_clk.c␀E (%u) %s: BBPLL SOFTWARE CAL FAIL
␀E (%u) %s: unsupported frequency configuration
␀�_␁␀␀�␀␀��␀␀rtc_clk_bbpll_configure␀%s failed: esp_err_t 0x%x␀␀␀ (%s)␀␀␀ at 0x%08x
␀file: "%s" line %d
func: %s
expression: %s
␀ESP_ERROR_CHECK␀␐�␂@␐�␂@�␂@Э␂@��␂@��␂@��␂@��␂@x�␂@e�␂@R�␂@?�␂@(SYSTIMER_TICKS_PER_US % apb_ticks_per_us) == 0 && "TICK_PER_US should be divisible by APB frequency (in MHz)"␀␀../esp-idf/components/hal/esp32s2/systimer_hal.c␀␀␀␀rtc_clk_xtal_freq_get() == 40 && "update the step for xtal to support other XTAL:APB frequency ratios"␀␀systimer_hal_init␀␀␀systimer_hal_on_apb_freq_update␀used␀␀␀␀free␀␀␀␀       %p %s size: %x (%p)
␀␀␀integ->prev_status == this_prev_status && "prev status incorrect"␀␀␀../esp-idf/components/heap/heap_tlsf.c␀␀size == this_block_size && "block size incorrect"␀␀␀tlsf_add_pool: Memory must be aligned by %u bytes.
␀tlsf_add_pool: Memory size must be between %u and %u bytes.
␀␀␀␀current && "free list cannot have a null entry"␀block_to_ptr(block) == align_ptr(block_to_ptr(block), ALIGN_SIZE) && "block not aligned properly"␀␀␀!block_is_free(block_next(block)) && "next block should not be free"␀␀␀␀block_size(block_next(block)) == 0 && "next block size should be zero"␀␀prev && "prev_free field can not be null"␀␀␀next && "next_free field can not be null"␀␀␀tlsf_create: Memory must be aligned to %u bytes.
␀␀␀sl_map && "internal error - second level bitmap is null"␀␀␀␀block_size(block) >= size␀␀␀block_is_free(block) && "block must be free"␀␀␀␀block_to_ptr(remaining) == align_ptr(block_to_ptr(remaining), ALIGN_SIZE) && "remaining block not aligned properly"␀block_size(block) == remain_size + size + block_header_overhead␀block_size(remaining) >= block_size_min && "block split with invalid size"␀␀!block_is_free(block) && "block already marked as free"␀prev && "prev physical block can't be null"␀block_is_free(prev) && "prev block is not free though marked as such"␀␀␀!block_is_last(prev) && "previous block can't be last"␀␀next && "next physical block can't be null"␀!block_is_last(block) && "previous block can't be last"␀tlsf_realloc␀␀␀␀block_merge_next␀␀␀␀block_absorb␀␀␀␀block_merge_prev␀␀␀␀tlsf_free␀␀␀block_split␀block_trim_free␀search_suitable_block␀␀␀block_locate_free␀␀␀remove_free_block␀␀␀insert_free_block␀␀␀CORRUPT HEAP: multi_heap.c:%d detected at 0x%08x
␀␀␀start_ptr␀␀␀../esp-idf/components/heap/multi_heap.c␀heap != NULL␀␀␀␀multi_heap_realloc_impl␀multi_heap_register_impl␀␀␀␀CORRUPT HEAP: Bad head at %p. Expected 0x%08x got 0x%08x
␀␀␀CORRUPT HEAP: Bad tail at %p. Expected 0x%08x got 0x%08x
␀␀␀head != NULL␀␀␀␀../esp-idf/components/heap/multi_heap_poisoning.c␀␀␀multi_heap_get_allocated_size␀␀␀multi_heap_realloc␀␀multi_heap_free␀abort() was called at PC 0x␀ on core ␀␀␀E (%u) %s: no response

␀␀␀␀start_address < 0x1000000␀␀␀../esp-idf/components/spi_flash/memspi_host_driver.c␀␀␀␀address + length <= 0x1000000␀␀␀memspi_host_program_page␀␀␀␀memspi_host_erase_block␀memspi_host_erase_sector␀␀␀␀memspi␀␀��␂@,�␂@d�␂@␄�␂@��␂@ �␂@��␂@(�␂@d�␂@,�␂@X�␂@,�␂@4�␂@t�␂@<�␂@��␂@␜�␂@␀␀␀␀␀␀␀␀h�␂@��␂@␀␀␀␀␌����?��␂@��␂@ �␂@ �␂@��␂@��␂@␀␐␀␀␀␀␁␀��␂@��␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀<�␂@\�␂@l�␂@␀␁␀␀T�␂@<�␂@␀�␂@��␂@␀␀␀␀(�␂@␔�␂@␘�␂@X�␂@boya␀␀␀␀�����?��␂@��␂@ �␂@ �␂@��␂@��␂@␀␐␀␀␀␀␁␀��␂@��␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀<�␂@\�␂@l�␂@␀␁␀␀T�␂@<�␂@��␂@��␂@␀␀␀␀(�␂@␔�␂@␘�␂@X�␂@gd␀␀E (%u) %s: No response from device when trying to retrieve Unique ID

␀␀out_write_protect!=NULL␀../esp-idf/components/spi_flash/spi_flash_chip_generic.c␀␀␀␀E (%u) %s: The flash you use doesn't support auto suspend, only 'XMC' is supported
␀␅�␂@��␂@��␂@��␂@��␂@��␂@E (%u) %s: configure host io mode failed - unsupported
␀spi_flash_chip_generic_get_write_protect␀␀␀␀l����?␘�␂@��␂@ �␂@ �␂@��␂@��␂@␀␐␀␀␀␀␁␀��␂@��␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀<�␂@\�␂@l�␂@␀␁␀␀T�␂@<�␂@␀�␂@��␂@␀␀␀␀(�␂@␔�␂@␘�␂@X�␂@generic␀chip_generic␀␀␀␀�����?8�␂@��␂@ �␂@ �␂@��␂@��␂@␀␐␀␀␀␀␁␀��␂@��␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀<�␂@\�␂@l�␂@␀␁␀␀T�␂@<�␂@X�␂@l�␂@␀␀␀␀(�␂@␔�␂@␘�␂@X�␂@issi␀␀␀␀E (%u) %s: chip %s doesn't support reading unique id
␀␀␀�␀���?��␂@��␂@ �␂@ �␂@��␂@��␂@␀␐␀␀␀␀␁␀��␂@��␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀<�␂@\�␂@l�␂@␀␁␀␀T�␂@<�␂@X�␂@l�␂@␀␀␀␀(�␂@␔�␂@␘�␂@��␂@mxic␀␀␀␀(␁���?␜�␂@��␂@ �␂@ �␂�␂@��␂@␀␐␀␀␀␀␁␀��␂@��␂@␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀��␂@\�␂@��␂@␀␁␀␀T�␂@<�␂@␀�␂@��␂@␀␀␀␀(�␂@␔�␂@␘�␂@X�␂@winbond␀chip_wb␀␀@␂@␄␄␀␀␀�I␐�I �I0�I␀4␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�        ␐�       �      0�      ␀5␀␀␀H␃��@ �␃ 84@30@�␃�3␑0"0 �␓␐ ␀�t���@�xH��@�0␀␀␀␀␀�I␀�      ␐�I �I0�I@�IP�I`�Ip�I␀4␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�    ␐�       �      p�      0�      @�      P�      `�      p�    ␀5␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�I␀�       ␐�I �I0�I@@IPPI``IppI��I��I��I��I␀4␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�    ␐�       �      ��      0�      @K      P[      `k      p{      ��    ��       ��      ��      ␀5␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓��␂␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓␅�␂␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓␅�␁␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓�;␃␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓�5␃␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓E4␃␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓E�␂␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀�␓ž␂␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀@A␀␂�␂␀�␓�␖␃␀2␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀␀6�␀␀␄D␂@�.␀␀���?�␀␀?L␅�?␀␐�a`␅�?␀@␀␀␀␀␀?␀@␀␒␀?␏'␀␀ �␁@܌␁@<�␁@��␁@␄�␁@�␆�?@␀�al�␁@<�␁@t␚␀?�␚␀␚␀?␘␇�?␀@␂@␐␘�?8␁�?␐␀␀P␐␀␀P�␇�?␀�␁␀��@?����␘ ␀?X�␀@<�␁@��␀@l+␁@����%␀␄␀␀��� ␞␀?�␞␀?D␞␀?␀␀␀�Ā@?�␃␀␀�␞␀?�␞␀?TA@?XA@?\A@?`A@?dA@?hA@?�`B?H␀L?G␀ܷ␁@,�␁@h�␁@�␀�a�␀�a��␄���␄␀���?␀␀␀@������w␀�����␟␇␀�␞␀?�#␀?�␞␀?�␞␀?�␁␀?�␞␀?�␞␀?�␞␀?��␀@<␇�?�)␁@␀␀�␀�?�-␀?␜␖�?␀␀␅���␄␀H,␀?�-␀?p,␀?��␄��,␀?�,␀?�,␀?␀␀␇␀l��?␀␘␀␀␀␔␀␀␀␀���,␀?�-␀?l-␀? -␀?0-␀?␀�@?␀␀␀�␌ ␐␀p��?@B␏␀␄     �?␐Q␃`x��?�3␀?�3␀?h3␀?␐ �?      �?␌     �?␀␐␂`��␂@␀␀␇@␀��?␀␐B?␀␀␀P���?|8␀?T8␀?\8␀? ␐L?$␐L?��?␀��8␀␀␀␇@4␐L?8␐L?��␏␀␀␀�?X␐L?␀␀@?␀��␀ ␀␀h␐L?l␐L?␀����9␀?�;␀?�;␀?�;␀?�;␀?�;␀?�;␀?�;␀?�;␀?�:␀?���?D �?@     �?H     �?L0B?P �?���?���?`     �?#␀␄␀���?�o␂@!␀␄␀�7␆␀���? q␂@"␀␄␀␀␀8␀�q␂@␀��(␐��?Tg␀?�g␀?hg␀?�"␀?�g␀?�g␀?�g␀?���?��␁@�␌�?`�␁@X␀L?␘��?Dm␀?�m␀?`m␀?�␕�?�␕�?�␏␀␀␐3␀?H�␀`␏␀��␀�␁␀D�␀`␀�␡␀�`B?␀␀␄␀�������������������?␔��?���?␀�␀`␀␀␀␂␀␀␀␁���?␀␀�␀,��?4��?␘␀L?�␀L?��@?����␀8␀␀������@?KLKL`�@?␀␀␎␀�����␟��������@?␀␀Ą@?�␖␀␀����t�@?����␀␀␀␄␄��?␀␀␀ ����T��?␐��?t��?���?���?��@?���?␀��␏ �␇␀��␛C��@?������@?�`B?T�A?��A?�`@?�P@?��␀␀�_␁␀h�A?␀`␀␀������A?����␀␀�␡��␀����␡l�A?␌�@?␐�@?␔�@?�p␀?�q␀?�o␀?�p␀?�p␀?␜r␀?�p␀?␌r␀?�q␀?�q␀?�q␀?�q␀?(��?D��?��␂@L��?X��?���?␄��?h     �?␀␌�?␀��?d     ��      @���� ␀␄␀�Mb␐�\␀?␘b␀?S␋␀]␀?0]␀?X␋␀␀x]␀?�b␀?�]␀?�b␀?�]␀?�]␀?␄^␀?D^␀?�b␀?`^␀?Hb␀?p^␀?4b␀?�^␀?�^␀?8_␀?�_␀?(`␀?�b␀?�a␀?��␁@�a␀?0`␀?L`␀?�`␀?�a␀?�`␀?�a␀?␘a␀?hb␀?�a␀?Ha␀?�a␀?�       �?x     �?�b␀?8g␀?>␑␀␀�b␀?␔c␀?(g␀?0␑␀␀� ���?�   �?�     �?␁␀␀�� �?␌
�?�     �?�     �?�     �?�     �?�     �?�     �?|     �?�     �?�     �?p     �?Hc␀?Hg␀?�c␀?␜g␀?�f␀?␟
␀␀�d␀?`f␀?<␎␀e␀?=␎␀␀␘e␀?Hf␀?␇␒␀␀@e␀␒␀␀$f␀?X␒␀␀Xe␀?s␒␀␀�e␀?␌f␀?�␕␀␀�e␀?�␕␀␀tf␀?, �?�e␀?ܖ␂@�e␀g␀?␀␀|�␀?|�␀?0␀␅␀ ␀␀?\      �?X     �?�[␀?�[␀?��␁~␀@␀␒␀␀�\␀?��      @�\␀?�\␀?|\␀?�␟␀�␀@B?␀PB?��␀␀␀␀␀����␏␀␀␀p���␇��������␀␀�������<���������?��␡␀��o����?␀␀␐␀␀␀�␀����␀␀@␀80B?@0B?<0B?P␀␀␀␋��␏␃F�␇H0B?D0B?���?���?4��?␐0B?h��?���?␀0B?�␃��␀␀B?␀�A?␀�@?�:�P����������?�����␀�␀␀��������������␡�␀␀␜␀␀�␃␀4�A?␄��?␌��?␔��?��␂@\        ␀␀���?���␀␀␁␀��?@��?p��?p��?p��?���?�   ␀␀�������?0��?,��?H��?d��?\��?���?H��? ��?x��?␔��?���?,��?x����?���?���?���?$��?���?\��?���?���?���?���?���?␔��?���?���?���?��␂@4␒��xV��0��?l��?���? ��?���?␌��?���?�?�?��␀@(�␂@0��?L��?�x␀@␁␀␀�8��?X��?t��?␜��?���?␄��?���?���?␜��?@��?␀�␀␀␀�␀␀��␂@`�␂@��␂@��␂@␁␀��␄`␀␀t��?���?4m␀@���?���?���?(��?␀␀␀�5uz␀|��?���?���?␀�␀␀␜�␂@P�␂@�␀�?␀␀�?0␁�?���?␀ @?6A␀�z�M␂"
0�A␖/␄�?␑␛#F␁␀␜␒␜␃␌��e��␄␌␋␌��␌␀␛���A��W��4�>␂��0�I␀��W�>␂��0�I␁␛�+��;�:D␌␃2D␀F␀␀␌␂␝�6A␀1V��␃�V�␄␌␞�R��S�M␎"��� ␀�␌�ɀ�␐]
�^��␅���]
�^�P� ��t�:���^�V(␀␖u␀BJ␀�␁␀␀␀� ␀�␌␛�K�'��␝�␀␀6A␀�򂠀�␃L␃9␄1=�9␅F␃␀␌��␃2�x9␄1:�9␅␝�␀␀6A␀e�␀�2��"␑�"�� ␀""␀%�␀␝�␀␀6A␀��␀�c␀�1��/��" ������� ␀K��␒␝␛����)�␌�� ␀�    K��␒␙␛�f��␌␂F␆␀�%�␌␒��␀Q␙�q␙�ZRW�␂Fr␀X␂�E␜q␖�␀U␑�␗�5␂�m␀K�␌␅�␃␀��␚␀w␑K��7␂�g␀␛UW��␌�␜J%F␁�a    ␖J␙e�␀%��@� ��<��8��4%��H�7��␀"�␁␆]␀x�zD␛D0D�IaG�q��������␑���0���")q:G��!�����Y�i�F␑␀hq���������V�J�m␇␀� ␀�␅�� ������ � ��
�N ��␑J��␆�␂␀� ␀�Xa␛w␛D��� �:�␝5��������������␀�␝ ������ ␀�␀�␄␀e␀�␑���ڪ�1���␀�␂␀�1␛��B␀␛3�␃␛"Kf7��Xa8�!����H␂I9�4�ibd␄a���!     B&␀��07�␛D�␂␀3␑)I�3␌␂y␙Y)I      I␆��␀'�␆��␌␃�XAhQ9␅I␆�␂␀"�␂␆␁␀␀␀"�␁␝�␀␀␀6a␀ ��r�␂V8␅���:��␙�9Iq�����p3�00��␑e)␁  ��
�ʌӍ
:�"h␀"�␁K�����␆�␅�␄�␃�␏�1����1}
�␏��␇␆␁␀␀␀r�␁-␇␝�6A␀%�␀1��8␃␖�␃'�v(#�␓�␒␌(3�CVb␅F␖␀␀␀␀�r����    ␀���n��p��␆␀␀␀ц�����|���-�␡�␀␛��        ␀␖X�␋���t�I␀̈�*␑�"� ␀�␂�␓(#␛�*��*�F���b␄�#␄%�␀�␃e�␇␝�83V��e�␀�r��p��g���;�i�␀6�␀Ai�Qm�J3*3PB␐@3�P3␐J37�Fai�@��G6=␌␂Q[�}␂�␂␀␀␀@��G�␂␆
␀��␜yqe���
ZD�:�q�␅�       ␖�␀�1�T�␀�174�F␀␀␌␂␝�␀␀6A␀��V�&"␂�S�␝�␀␀␀6A␀␌*%x␄␝�␀␀6A␀��␀�� e`␀��␁␌␂�(�␝�␀␀6A␀�I�␝�␀␀6A␀�F�␝�␀␀6A␀␌␛�� �C�␀␌␛�␋�A�␀␝�␀␀6A␀␐␑ %��]␂�jP 4���␃␀(J␖"��␄�␅�␂␀V��"�␂F␑␀␀␀␀@�4"�␄V�␃���e���* ���␄�␃�␅�␂␀-
����j8
␖#␀�␃␀��␄�␅e��e���j8␚␖#␀�␃␀␝�␀␀6�␁a"�� ␀R&␀0c � ␀Ra'��� P4�z ���␜��␜��␜�,{�
�␀@04␖␓␁�␙��␖��␖���(�␄�␀Q�����ZVW�?Q�����PV�W�3��r��pTc�␅`� ��␜�␏�␀�␅��␜�␂%��V
␇PD�Z"ZfVt��␃F␘␀␀␀Q␃��␃�� ␀8u�3␐�␁��3 � ␀9u�72'␀␖#␁�␃␀␆␃␀␀�1�␂␀�1F␋␀␀␀e�� � @� `� ���␀(␗V��F␄␀␀␀����␄�␆ � ���␀!��� ␀B!'� ␀8␂-
7␔␂�a␝�6A␀@@t�dA��F␅␀␀␀A���␂�␄␀�J0���␇␀�␂�
�(␑���␅�␆␀�
�␃�␃8␄�␂2#␁�␃␀-
␝�6A␀1��hbH␃Q���␌␀␀␀8␅y␒8␃KD�␃␀=
�␆�␂��x␒x'�␇␀␌␋x␅�␚␁9␒2'␁ � �␃␀�: �
�␂x␄�hy=
�␂�g␖��␆␃␀␀␀"�␅0'�=␂F␀␀␌␃-␃␝�␀␀␀6a␀�␂�eyQ��m
x␅�␂x␇�␇␀�ꌦr"␁ b r'␘Vw␀h␂r&␀r'␂�␃`� �␇␀�:�␔˱�␆�␇␀̊H␃817␔␂���8␅�
8␓�␂�␃␀-
␝�6�␀A��)1�␄ˡ�(␀V�␄�1�␘�I��␖␓␄�X�I�␃�␎␀␀8␄8␃�␃␀��1��␜8␚8C�␃␀�
�1�␛�␀␀8q9Z8␄8␓�␃␀␆␃␀␀���F␁␀␀␀␀��␂-
␝�6a␀M␂␖�
(␂␖r
8␂␖#
(␒␖�    Q��␌��@� ��]�* ␋3W�␅V��␆!␀V"!␂@� "d␆%Vy����␌@� ����* �J␆␃␀�␄���-
␖J�F␕␀e�␇�v��w��
�␋␌␚�␇␆␐␀␀1n��␄"#␀""␀�␂␀-
��X␔@� R%␖�␅␀RW�        XDR���%␁�␂(␃�
(␒�␄�␂␀-
�␀␀"�␂␝�␀␀6�␀Q\�)qh␅��␜(&�␂␀I␑-
V*␟�qh␚Hf␖d␜Hv␖␔␜H*H$␖d␝�:�␑�␃�␄␀�␚��␇�qh␚��Hv�!␖␔␛�!�Y!K�␆n␀␀H��!I1�D�V��xZ7�␂�a␀�␑�CG�␂F_␀�!�s�VW␗�y�V�␖x���m␃)AH␑(1␌␗918!␆-␀b␆0␖��h␅h␆�␆␀�␚�S␀�q�9�h␚�8�h扡����(�␆␀V:␆衸��q�n �A␖v␆h␙�␆0␖X␅��)Qm
��␑,␏|��a�( Ц0␀␚@␀��␀␆@�p�pz ��␐␀␆@����z�␇g␋�   x␙zxw�␂G8␛␛f��'�˨a(Q�␄␀␀HqIA�␂␀␀␆␁␀(Q�␖�H␅�
H␔�A�␄␀␖��+␀␀␀␀�q�␚�(␚��␌␋␀V�   �q�␅␀V�␅�
�q ����t�␙�x'4␕ �����z�␆�       ␀*f D��␃␀�j�␆�� ␀:f0D�␌␋�����t�␅�q�K@�����␙�� � ␀␖��81�␅�q␌␒�␃␀(A81�␅�q�␀␀81␌␒H9�␑�␂�
�␃�␄␀-
␀!��␆␇␀␀"�␂F␅␀-
␆␄␀�!␖��)1������!␆��␝�␀␀6a␀A��)1�␄ˡ�(00t␀�ʨ1�␚���␘�␄␀ܺ�1�␃8␚8��␃␀8␄�
8␓�1�␃␀�␀␀␀���-
␝�6�␀)1��␂␆J␀!��ˡh␂h&�␆␀�
Vz␑h1x␖r'␐␖g␋␖�␋xV��␂G�␂�?␀J���␂�=␀�␆�␃h
h��␆␀a��`eci!�Zx1�qh'hF�V��␁�4␀␀�7�!��␜�␆␀hq}
i!�J���␀␌␇h␂�!�␆�1�ec␀�
�␆�␄�␇�*�1�␘�)␐V�␕␀(␂�1(␒�␑�␂␀�␑�␄␀␌    ␌␚���`U�jDj3�␙V5�81(#(R␖B␆�3�␇�␑�␂␀�␑�␕␀���␆␔␀��␂�␒␀␀�␂�1�␘␀�
���␀�␃� ␀�
�␇␖J�␆���␂�1�(␁␀�
�␆�␇�␃�␑�}�␀�␑����      ␀�
�
HqXa(TW�␂␆5␀�AZXW�␂�4␀�␄�␃(␜(␆("�␂␀�1V�␐(qH␒B$␑␖t␎H"H$�Ĩ2�A�a�␄␀�␚e`␇␖�
(��␂␀Xa�Q�Q���e�}␃�$cF␅␀,       �$c � 0� ���U�␀r� �q�␚�(␚��␌␋␀Vz␆�q�␆␀V�␄�q�␇�␚�␂�(␑�␅␀␌␋␌␘�����t D��[@���␋x␆�qx␗�␇␀��*U*3���␌␙�
�1�␂␀␀␌␒�
)1F␀␀�
(␆�q(2�A�a�1�␂␀�1␀XAY1␆␇␀�7��1␆␅␀��␂�1␆␃␀"�␂)1␆␁␀R�␂Y1(1␝�␀␀␀6A␀�3��(␁␀␝�␀␀6A␀�/��(␀␀␝�␀␀6A␀␌
���␌␂␝�6A␀�␃%X␇␝�␀␀6A␀a��␌U|�`� ��cR���3␇`� �c=
2�␃p3␐`� 0� �␡␀�JVu�F␀␀]␃Y␄-
␝�␀␀␀6A␀0� �␕�␀␌␂␝�6A␀��␂e�␃%␗␁�b␂"�␀␝�6A␀��␀����␕␁�b␃"�␀␝�6A␀␖␓␁���    ���␡���␀�␓␁�2��π����␇�""�␇F␄␀("�␁� ��"�␇��␃␌␓␌␂�␄9␄␝�␀␀6A␀"␂␄V�␀�␄0� ��]"�␆�
␌␚���␀���␀␌ ���␀␌␂␝�6A␀���␀�"␀=␂���␀�␓␌␂���␀␝�6A␀���␀�␂���␀�␒␌␂␝�␀6A␀ � ���␀␝�␀␀6A␀���␀���␝�6A␀e�]%�␀e���␀␀␀6A␀����(␀e��e�␀%�]␝�6A␀!��� ␀(␂  ␄␝�6A␀␌
�� ␌␜���␀���␀␌
���␀␝�6A␀␌
%��␝�␀␀6A␀␖b␃�␒�␂f(␎%�␂M
�B␄�␔)�␒�␂�␃f␘␏ef␃&␚␄␜␂�␅␀␌␂�␄␀%J␃&␚�␆��␀␀␀␜bF␀␀,�␝�␀␀6A␀␖r␁�"␀f
         � e�`̪�␂|����F␀␀␜j-
␝�6A␀␖�␄2"␀␖s␄(␓�␃␋"�"␛��␂M
e;␄␌␒��3(␓�␃f␒␇%
␃F␃␀␀␀Ҡ␀�� н ��␂␌␂&␚␓ћ���������΁h�␀␜b␝�6A␀!��2���2�␘␀"��7��e�␃�␖␀6A␀���%�␄␌
���␀-
������␌␋������␀&R␐������␌␋������␀e����h�?aePae�c1��␌␂�␃�␓\�␂␌l␛"␌
���␀7���␁-
␌
���␀�}��␂␌
␁␒��␒�p{A␀�I␀�␃"!␀�␃␂a␁␀�I�a␏�a␐Ŋ␂␀�␃␂a␕␀�␃␀␂␀␝�␅�␀␀�␃Ai�␀␄␐␀�␓␌p�␀␀␀␌P␂a␔␀�␃   1␁d�␀�␓m␁UE␀��!␀�␑␀�1␘A␐ ␀␀�␃␐4␀␀6A␀�[��␂␑�Z��[��[���d�␒�␀␀�␑ � !W� � !W�� ␀�␂␝�␀␀␀6A␀!S�� ␀�"␀� 䀐�'�␂����␅�␁"�� ���G��␛� ���P�␀-
����␅�␂␌=␌␋����␅�␂␌M␌␛����␅␌␛���␅␆��e
␆�:���␐(␘�A)Qe�␅��␐��␅��␐␆�3���␘"(␁�a␆)qe�␅��␘��␅��␘�␆␆␌
� �␀␌␚�␞�␀�3�␀�2�␀!&�� ␀�␂!$��(�� ␀�␂!"��(�� ␀�␂!!�� ␀�␂! �� ␀�␂!␟�� ␀�␂� ␀�    "�� � � ␀�      ␌␂�␚�� ␀)       � ␀�� � ␀� ␀e�␁�␂ef␀␆��␀6A␀�␕�␌␂� ␀'�␏�␓�� ␀␌␘�(�  `␝�␀␀6A␀�␒�"���␂�
����"�
��␒�*(':A��4�8␆␑␀␀␀!␆� �␐!␅� � �␅��␅���␌␒��+�␃��␄������␂"�␀  t�␅␀␀␀։�F��␀␀���!�������␌␂␝�␀6a␀@@tR�␂�␒␂␆n␀␜␌�␃␐� ���␀������Ra�␁�*␘�\␀���␀�␁֋␘F^␀␀���%Qa�␃�Ra���ePa�␅%Ra␆␂␀������␀8␑Q��a��ZSW�␂�F␀004␖�␐␆G␀␀␀Q��P3␐Q��P3 Q��a��ZS␌␇W� a��Q��j37�␕81␌␗��2#␔␌␅2��␅0���pt␌␖␆␗␀␀%���!␀1��`z00�␐���ppt�[␀1��0� 2!␁R���␃�␅�ԡ���Fa�␅eHa����Ea�␃�Ga���eEa�␃␀���␀������␀␋"�҈!�␁␖�␇␖���tF␄␀␀␀���|����␀␆␌␀␀"!␂␖�␁���␖t␀]␇�?a�␄␀]␄���␀␆␄␀␀␀␀␌␅W���%>a�␔␀������␀�␑␀8␁���ƻ�a*�Q(�j37��␌␗F��␖�����␀␀1��0�␐1��0� 2��X␑���1��0�␐1��0� ����␑Ƣ�-␅␝�6a␀2�␀�K��␁9␁9␑9!91�␜␁�␃�␁�␂e��-
␝�␀␀␀6A␀!��2� �␂"�␄␖(␀␀7��␝�␀␀␀6A␀��d��␁%␛␁␌
�t␑�s�z8�Vc�F0␀␀p���(␀�␆�#␁�␃�#Ј �� `�␐g��␖5␀����R��3���Q���␂� ␀K��1e�␆�1␖��!J�1J�*j��g�␐�I��I��I�,���␀!H��C�*('�␐�F��B��B�,����␀� ␔␖␒␁�A��<��=���0���␀��␔␖␘␁�<��6��7���1���␀!9�**�␂K�F
␀�␂e�␆␖��␇␀␀␀␀␛D&4␂���1$�8␃���#��␆ � �␃␀␌
-
�%��␂����␂␀␀␀␀�"� � %��Vz␀����␂e��-
␝�␀␀␀6A␀␖R␄�␛��␎�����9␅"��""␀�  ��(␀�(�x���8�"␅�(␄�"␖��V���␑��␑��␅���0���␀ � e�␆␝�␀␀6A␀̲�␄�␃%��}
�K␀␀V�␀ � e��0s �G␀Q��7�␄�-␀␀␀a��Q��q��jbX␅g7 b��h␆␖5␋�u���5�&␇xEw�␂�1␀X�V���&␀␖�
�u��5�"␚hEg�␕h␅�␕x%�f pf @f␐g␔␋�*␀␀X�Ve�F␟␀0�  � %�␆�z VJ
�#␀�u�␆�␆�␂␀␀␀␀�%␇ � �␆V␚␁�����������w�Y�␀��c � p� �k�␀ � e���␗␀!��(␂������␄�␃�␂␀␌␇␆␒␀␀�����������P�I�␀�����������Y�D�␀@� 0� ����z V*����@� 0� e���z ␖:����-␇␝�6A␀����(␀␏���0�  � e��F␋␀␀78␏����␃�␂e���␃␀␀␀␀���0�  � %��̪���I��␃�␂e��-
␝�␀␀␀6A␀���,
� ␀�    �� � ␀� ␝�␀6A␀����␕␓�z��␕␒�c���␂␌␝�␕
␆␅␀␌-�␀␀Ҡ␀@� 0� �␂�␞␄␝�␀␀6A␀!�� b@  ␄␝�␀␀6A␀!�����(␂�"�␝�6A␀!��(␂ �c!�� (�␝�␀␀␀6A␀���␝�␀␀6A␀����* %��������.␀!����␑��␃� ␀�␂й���0�;�␎� ␀(␂�"0␝�␀␀6A␀1|�(␒0� �␂␄��␒␀␇�␕�␒��� ␀�"␂�      ␆�2�B␀(RV���␃�␁␄␝�6A␀�R"�␂␆␙␀␀%�␃1k�0� e�␃�"␁�h�␘␀|ꠙ␐�X␀(␂��␁��1F␂␀(␂�␂�␑��1�␂��␀��E��␅�␐�␀�␄␀␀␇����E"�␁␀␚@␀���<x��␃�␃��␃␌␂␝�␀␀6A␀␖"␋e�␃1O�0� ��␃�"␁␖�␄�␘␀��␁�� �X␀(␂��t�␒␀�#�
�       �F��F��F���␀���␀�       ��␁��1��␅�␙␀␇hg�YV��F␙␀␀␀␀(␂�␂�␑��1�␛␁�␂␌l��␅���␀F
␀␀␀��E␌␒␀␚@␀��␐␑ �2x%�␃�␃e�␃␌␂␆␅␀␀␀␀"�␂�␂␀�j����������␝�␀␀␀6A␀�"�� ��
␀|���0␖+␀%o␆␌␛�J␀␌
��a␐ ␀�:␐0�␓␐ ␀�␘���␐�  ␝�␀␀␀6A␀�␓��␓�␀�
�I␐␑ �k␆␌       �H␀␌␃0�a␐ ␀�3 0�␓␐ ␀␝�␀␀6A␀'8+�␏���␑��␀␀!
␀!␅��␋␀!␅�␆
␀!��␀�_␆�␄��␄��� �␂�� ��␁%V␆%e␆!���␀␀!��␝�␀␀␀6A␀���� ␀'b%!������ ␀�"␀!�� �␐!�� � !�� ��␌␒�:␂␆B␀� ␀�(␀"�␄␟������� ␀�����␐�� �?�����:␂␆7␀���� ␀(  'b(!������ ␀�"␀!����A �␐!�� � !��*�"�␂�:␂␆*␀� ␀(       'b$!���,�� ␀�␂!����A �␐!�� � !'�*�"��{� ␀(      'b&!��� ␀(␂Wb␛ �A!����� �␐!�� � !��*�␜␂��L���� ␀'b␙!������ ␀�␂|� �␐!␐�*�,␂��'� ␀␌B (␐��!������ ␀�␂|� �␐!��*�␌␂�9␁L␂␝�␀6A␀'�␂␆)␀�����␑��␀!������ ␀�␂��␐�d��� �␃␆&␀!������ ␀�␂��␐����� �␃�␟␀������� ␀ $A�"␐����" )␃F ␀������� ␀�$A�"␐Wi␅����" � ␀)␃␌␂)␄␜␂ �␐�␅F␙␀���|�� ␀�       "�ࠈ␐�␃2��7␂&�␒␀e>␆�~��~��� �␂�� ��␁�4␆�C␆� ␀(␂�␁␀␀␀� ␀(         0␄9␄␌#0"␐)␅�␄␀� ␀␜␃02␐9␄,␃0"␐)␅␝�␀␀␀6A␀'80����"␑*((␂�␂␀!␡��    ␀!y�␀!x��␆␀!x�␆␅␀!w��␃␀!w�␆␂␀!o��␀␀!o�␝�6A␀�␃�t��"␑*��␃␝�␀6A␀�␂␏�p���␄��␑ڛ�     �␘�b) �␀␝�␀6A␀%␄␀�J�2�␁"(␀�(␁**�2␁␌␃���3␝�␀6A␀�D�␌J� ␀�r)      �� � ␀�␀�@��␂�(␀␀␝�␀␀6A␀�<�!���(␀1��␖�␀��␀�␄-␑*���␃␝�␀6a␀!R���␌�"␀␌␂)1%~␃�1f␘␄�␂%
␅��␂e�␄��␃�␅�␃␝�6A␀�␂��␄␝�␀␀6A␀!"�␌␙(␂ ��␝�␀6�␀��09␑��=␁␌HI!Y1iAyQ9����r␌�x␑��f␗␂�~␁␝�␀␀␀A␀␂�␃␀�␓Ea␀␀0␀␀E␒�␀␅
␁␒��␒�p␂A␀�␃␀�␃␐!␀�␃    ␑␀�␃���a1␁��␂a␀␐␁ ␀�␓�[␁␁��␀�␓␐ ␀ �␃0�␃A��0"␐@"␐␖�␄␀�␃800�I8@0�I␀�␃A>�@␀ ␀␄�␋B@"␐Vr�␛DL␃@�␓G␓␙␜�@�@@3�At�@3�H␃-␆h␓�␄␀␆��F��␀␀�Y!␀�␑␀�1␘A␐ ␀␐3␀6A␀An�@� eo␃�␂̸�␃e�␁�␚��␅�b␀@� �o␃�␀␀␀␀6a␀�␂�e␇␃f␚␄␌␂�!␀ � @� ���""␀�"�^��^��^�������␀-
␐␑ e␄␃&␚π�␃��4��fD␅␐␑ ��␅B�␀ � ��␌�␄I1�'␂-
G�␂G��2!␃␖␃␂��␀����␅␀0�  � fD   e!␂�* F␁␀␀e␅␂-

@lbernstone
Copy link
Contributor

EEPROM is the default instance. AGE.commit();

@xtrinch
Copy link
Author

xtrinch commented May 7, 2021

Thanks, my bad!

In between doing all this testing trying to figure out what's wrong, I must have deleted the arduino-esp32 package, cleaned everything, rebuilt and reinstalled everything and somehow even my original project (the original version with EEPROM and the preferences version) works now. I guess something corrupted got stuck in some cache somewhere.

Sorry for wasting your time and thanks for your help.

@xtrinch xtrinch closed this as completed May 7, 2021
@brianmichalk1
Copy link

I have this same exact problem using the same example program. Here's my platformio.ini, everything else I copied from this thread.

[env:esp32-s2-saola-1]
platform = espressif32
board = esp32-s2-saola-1
framework = arduino
lib_deps = EEPROM
build_flags = 
  -DCORE_DEBUG_LEVEL=5
  -DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG

@lbernstone
Copy link
Contributor

EEPROM is included as part of the arduino-esp32 core, so you shouldn't need it in lib_deps, and this is likely to pull in a library for avr. Note that eeprom is only provided for code portability. If you are writing code specifically for esp32, you should use Preferences. OP's issue was solved, and appears to have been an installation issue.

@brianmichalk1
Copy link

Okay, I had to go scorched earth, and deleted everything in my .platformio directory. Performing a project clean did not help.
I don't know what the problem was, but I suspect LDF or some other automated tool was using the wrong packages/framework/board/library.
I spent an entire day trying to port code over to the S2, and got hung up on persistence. Frustrating.

This works:

[env:esp32-s2-saola-1]
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2idf/platform-espressif32-2.0.2.zip
board = esp32-s2-saola-1
framework = arduino
build_flags = 
  -DCORE_DEBUG_LEVEL=5
  -DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG
#include "Preferences.h"
Preferences p;
void setup() {
  Serial.begin(115200);
  Serial.println("Begin");
  p.begin("prefs", false);
  Serial.println("Get");
  int i = p.getInt("key", 0);
  Serial.printf("At boot: %d\n", i);
  i++;
  Serial.println("Put");
  p.putInt("key", i);
  Serial.println("Get");
  i = p.getInt("key", 0);
  Serial.printf("After write: %d\n", i);
  Serial.println("End");
  p.end();
}
void loop() {delay(-1);}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants